24 lines
632 B
C++
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;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|