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:
jeggermo 2001-12-04 21:15:16 +00:00
commit 7abbf595f7
2 changed files with 9 additions and 10 deletions

View file

@ -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);