added test for permutation components

This commit is contained in:
tlegrand 2007-10-11 14:14:10 +00:00
commit 0aa67ac17b
5 changed files with 327 additions and 0 deletions

24
eo/test/t-eoInt.cpp Normal file
View file

@ -0,0 +1,24 @@
//-----------------------------------------------------------------------------
// t-eoInt.cpp
//-----------------------------------------------------------------------------
#include <eo>
#include <eoInt.h>
//-----------------------------------------------------------------------------
typedef eoInt<double> Chrom;
//-----------------------------------------------------------------------------
int main()
{
Chrom chrom1, chrom2;
std::cout << "chrom1 = " << chrom1 << std::endl
<< "chrom2 = " << chrom2 << std::endl;
return 0;
}
//-----------------------------------------------------------------------------