forked from gegelati/gegelati
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(Project) New gegelati.h header to ease inclusion of apps.
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/** | ||
* \file gegelati.h | ||
* \brief Helper file gathering all headers from the GEGELATI lib to ease their | ||
* inclusion in apps. | ||
*/ | ||
#ifndef GEGELATI_H | ||
#define GEGELATI_H | ||
|
||
#include <dataHandlers/dataHandler.h> | ||
#include <dataHandlers/primitiveTypeArray.h> | ||
|
||
#include <exporter/tpgGraphDotExporter.h> | ||
|
||
#include <instructions/addPrimitiveType.h> | ||
#include <instructions/instruction.h> | ||
#include <instructions/lambdaInstruction.h> | ||
#include <instructions/multByConstParam.h> | ||
#include <instructions/set.h> | ||
|
||
#include <learn/learningAgent.h> | ||
#include <learn/learningEnvironment.h> | ||
#include <learn/learningParameters.h> | ||
|
||
#include <mutator/lineMutator.h> | ||
#include <mutator/mutationParameters.h> | ||
#include <mutator/programMutator.h> | ||
#include <mutator/rng.h> | ||
#include <mutator/tpgMutator.h> | ||
|
||
#include <program/line.h> | ||
#include <program/program.h> | ||
#include <program/programExecutionEngine.h> | ||
|
||
#include <tpg/tpgAction.h> | ||
#include <tpg/tpgEdge.h> | ||
#include <tpg/tpgExecutionEngine.h> | ||
#include <tpg/tpgGraph.h> | ||
#include <tpg/tpgTeam.h> | ||
#include <tpg/tpgVertex.h> | ||
|
||
#endif |