The new libga

Apart from big changes in the src/ga dir, and the addition of the src/do dir
it also generated a few changes here and there, e.g. some include file still
missing. Also removed some warning from some test files.
This commit is contained in:
evomarc 2001-04-24 04:52:04 +00:00
commit 56c9464306
32 changed files with 1679 additions and 158 deletions

View file

@ -351,3 +351,29 @@ bool eoParser::userNeedsHelp(void)
return needHelp.value() || !messages.empty();
}
///////////////// I put these here at the moment
ostream & operator<<(ostream & _os, const eoRateParamType & _rate)
{
_rate.printOn(_os);
return _os;
}
istream & operator>>(istream & _is, eoRateParamType & _rate)
{
_rate.readFrom(_is);
return _is;
}
ostream & operator<<(ostream & _os, const eoParamParamType & _rate)
{
_rate.printOn(_os);
return _os;
}
istream & operator>>(istream & _is, eoParamParamType & _rate)
{
_rate.readFrom(_is);
return _is;
}