Updated makefile.am such that "make check" will run all test programs. Fixed
a number of erronuous return values that made the script fail. What's left is let Marc clean up the mess he made with t-eoReal and t-eoRealAllESAllAgain
This commit is contained in:
parent
ddb9e026cf
commit
beba7bd5c9
14 changed files with 20 additions and 59 deletions
|
|
@ -25,7 +25,7 @@ typedef eoVirus<float> Chrom;
|
|||
|
||||
int main()
|
||||
{
|
||||
const unsigned POP_SIZE = 1000, CHROM_SIZE = 128;
|
||||
const unsigned POP_SIZE = 10, CHROM_SIZE = 12;
|
||||
unsigned i;
|
||||
eoBooleanGenerator gen;
|
||||
|
||||
|
|
@ -67,8 +67,8 @@ int main()
|
|||
eoCommaReplacement<Chrom> replace;
|
||||
|
||||
// Terminators
|
||||
eoGenContinue<Chrom> continuator1(500);
|
||||
eoFitContinue<Chrom> continuator2(128);
|
||||
eoGenContinue<Chrom> continuator1(10);
|
||||
eoFitContinue<Chrom> continuator2(CHROM_SIZE);
|
||||
eoCombinedContinue<Chrom> continuator(continuator1, continuator2);
|
||||
eoCheckPoint<Chrom> checkpoint(continuator);
|
||||
eoStdoutMonitor monitor;
|
||||
|
|
|
|||
Reference in a new issue