changing autonconfiguration to compile more examples and to create documentation
This commit is contained in:
parent
06dab1f914
commit
64cb3f19e1
2 changed files with 15 additions and 15 deletions
|
|
@ -5,11 +5,11 @@ AM_INIT_AUTOMAKE(eo)
|
||||||
|
|
||||||
AC_PROG_CXX
|
AC_PROG_CXX
|
||||||
|
|
||||||
#CXXFLAGS = -Wall -g
|
CXXFLAGS="-Wall -g"
|
||||||
|
|
||||||
AM_PROG_LIBTOOL
|
AM_PROG_LIBTOOL
|
||||||
|
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
|
|
||||||
dnl add Makefiles that must be modified by the configuration here
|
dnl add Makefiles that must be modified by the configuration here
|
||||||
AC_OUTPUT(Makefile src/Makefile src/es/Makefile src/ga/Makefile src/gp/Makefile src/obsolete/Makefile src/other/Makefile src/utils/Makefile test/Makefile win/Makefile)
|
AC_OUTPUT(Makefile src/Makefile src/es/Makefile src/ga/Makefile src/gp/Makefile src/obsolete/Makefile src/other/Makefile src/utils/Makefile test/Makefile win/Makefile doc/Makefile)
|
||||||
|
|
|
||||||
|
|
@ -132,19 +132,19 @@ main()
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// Check multiOps
|
// Check multiOps
|
||||||
eoMultiMonOp<Chrom> mOp( &next );
|
eoMultiMonOp<Chrom> mOp( &next );
|
||||||
mOp.adOp( &bitflip );
|
mOp.adOp( &bitflip );
|
||||||
cout << "before multiMonOp............ " << chrom << endl;
|
cout << "before multiMonOp............ " << chrom << endl;
|
||||||
mOp( chrom );
|
mOp( chrom );
|
||||||
cout << "after multiMonOp .............. " << chrom << endl;
|
cout << "after multiMonOp .............. " << chrom << endl;
|
||||||
|
|
||||||
eoBinGxOver<Chrom> gxover(2, 4);
|
eoBinGxOver<Chrom> gxover(2, 4);
|
||||||
eoMultiBinOp<Chrom> mbOp( &gxover );
|
eoMultiBinOp<Chrom> mbOp( &gxover );
|
||||||
mOp.adOp( &bitflip );
|
mOp.adOp( &bitflip );
|
||||||
cout << "before multiBinOp............ " << chrom << " " << chrom2 << endl;
|
cout << "before multiBinOp............ " << chrom << " " << chrom2 << endl;
|
||||||
mbOp( chrom, chrom2 );
|
mbOp( chrom, chrom2 );
|
||||||
cout << "after multiBinOp .............. " << chrom << " " << chrom2 <<endl;
|
cout << "after multiBinOp .............. " << chrom << " " << chrom2 <<endl;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Reference in a new issue