remove unused test binaries, some code formating
This commit is contained in:
parent
c1eef3420c
commit
c4c27907ed
6 changed files with 11 additions and 38 deletions
|
|
@ -1,23 +1,15 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// t-eo.cpp
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include <eo> // EO
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
#include <eo>
|
||||
|
||||
typedef EO<float> Chrom;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
int main()
|
||||
{
|
||||
Chrom chrom1, chrom2;
|
||||
|
||||
// EO objects can be printed with stream operators
|
||||
std::cout << "chrom1 = " << chrom1 << std::endl
|
||||
<< "chrom2 = " << chrom2 << std::endl;
|
||||
|
||||
|
||||
<< "chrom2 = " << chrom2 << std::endl;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
|
|||
Reference in a new issue