main should return int
This commit is contained in:
parent
8b63d5e58d
commit
173756916a
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ typedef eoMinimizingFitness FitT;
|
|||
template <class EOT>
|
||||
void runAlgorithm(EOT, eoParser& _parser, eoState& _state, eoEsObjectiveBounds& _bounds);
|
||||
|
||||
main(int argc, char *argv[])
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
// Create the command-line parser
|
||||
eoParser parser( argc, argv, "Basic EA for vector<float> with adaptive mutations");
|
||||
|
|
|
|||
Reference in a new issue