paradiseo/eo/test/t-eoInt.cpp
2012-08-30 11:30:11 +02:00

24 lines
632 B
C++

//-----------------------------------------------------------------------------
// 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;
}
//-----------------------------------------------------------------------------