some template classes and functions which did not need
to be templates have been changed to normal classes and functions with hard coded typed This might help with M$VC++ 6.0 compatibility
This commit is contained in:
parent
61ea207287
commit
7abbf595f7
2 changed files with 9 additions and 10 deletions
|
|
@ -68,7 +68,7 @@ int main(int argc, char *argv[])
|
|||
// create an instantiation of the fitness/evaluation function
|
||||
// it initializes the initSequence vector
|
||||
// the parameters are passed on as well
|
||||
RegFitness<FitnessType, Node > eval(generationCounter, initSequence, parameter);
|
||||
RegFitness eval(generationCounter, initSequence, parameter);
|
||||
|
||||
// Depth Initializor, defaults to grow method.
|
||||
eoParseTreeDepthInit<FitnessType, Node> initializer(parameter.InitMaxDepth, initSequence);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue