Remmainig files in pyeo directory now uses relative inclusion in directive #include

This commit is contained in:
Ronaldd Pinho 2019-06-29 21:32:38 -03:00
commit 3b5b1cd6c9
18 changed files with 53 additions and 53 deletions

View file

@ -21,7 +21,7 @@
#include <sstream> #include <sstream>
#include "PyEO.h" #include "PyEO.h"
#include <eoPop.h> #include "../eoPop.h"
using namespace std; using namespace std;
//using namespace boost::python; //using namespace boost::python;

View file

@ -26,7 +26,7 @@
#include <exception> #include <exception>
#include <boost/python.hpp> #include <boost/python.hpp>
#include <EO.h> #include "../EO.h"
struct index_error : public std::exception struct index_error : public std::exception
{ {

View file

@ -18,11 +18,11 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoEvalFunc.h> #include "../eoEvalFunc.h"
#include <eoInit.h> #include "../eoInit.h"
#include <eoTransform.h> #include "../eoTransform.h"
#include <eoSGATransform.h> #include "../eoSGATransform.h"
#include <eoPopEvalFunc.h> #include "../eoPopEvalFunc.h"
#include "PyEO.h" #include "PyEO.h"
#include "def_abstract_functor.h" #include "def_abstract_functor.h"

View file

@ -18,10 +18,10 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoSGA.h> #include "../eoSGA.h"
#include <eoEasyEA.h> #include "../eoEasyEA.h"
#include <eoDetSelect.h> #include "../eoDetSelect.h"
#include <eoCellularEasyEA.h> #include "../eoCellularEasyEA.h"
#include "PyEO.h" #include "PyEO.h"
#include "def_abstract_functor.h" #include "def_abstract_functor.h"

View file

@ -18,9 +18,9 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoBreed.h> #include "../eoBreed.h"
#include <eoGeneralBreeder.h> #include "../eoGeneralBreeder.h"
#include <eoOneToOneBreeder.h> #include "../eoOneToOneBreeder.h"
#include "PyEO.h" #include "PyEO.h"
#include "def_abstract_functor.h" #include "def_abstract_functor.h"

View file

@ -18,13 +18,13 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoGenContinue.h> #include "../eoGenContinue.h"
#include <eoCombinedContinue.h> #include "../eoCombinedContinue.h"
#include <eoEvalContinue.h> #include "../eoEvalContinue.h"
#include <eoFitContinue.h> #include "../eoFitContinue.h"
#include <eoSteadyFitContinue.h> #include "../eoSteadyFitContinue.h"
#include <utils/eoCheckPoint.h> #include "../utils/eoCheckPoint.h"
#include <utils/eoStat.h> #include "../utils/eoStat.h"
#include "PyEO.h" #include "PyEO.h"
#include "def_abstract_functor.h" #include "def_abstract_functor.h"

View file

@ -21,7 +21,7 @@
#ifndef MAKE_ABSTRACT_FUNCTOR_H #ifndef MAKE_ABSTRACT_FUNCTOR_H
#define MAKE_ABSTRACT_FUNCTOR_H #define MAKE_ABSTRACT_FUNCTOR_H
#include <eoFunctor.h> #include "../eoFunctor.h"
// DEFINES for call // DEFINES for call
#define WC1 boost::python::with_custodian_and_ward<1,2>() #define WC1 boost::python::with_custodian_and_ward<1,2>()

View file

@ -18,11 +18,11 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoGenOp.h> #include "../eoGenOp.h"
#include <eoOp.h> #include "../eoOp.h"
#include <eoCloneOps.h> #include "../eoCloneOps.h"
#include <eoPopulator.h> #include "../eoPopulator.h"
#include <eoOpContainer.h> #include "../eoOpContainer.h"
#include "PyEO.h" #include "PyEO.h"
#include "def_abstract_functor.h" #include "def_abstract_functor.h"

View file

@ -18,7 +18,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoMerge.h> #include "../eoMerge.h"
#include "PyEO.h" #include "PyEO.h"
#include "def_abstract_functor.h" #include "def_abstract_functor.h"

View file

@ -18,8 +18,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <utils/eoParam.h> #include "../utils/eoParam.h"
#include <utils/eoMonitor.h> #include "../utils/eoMonitor.h"
#include "PyEO.h" #include "PyEO.h"
using namespace boost::python; using namespace boost::python;

View file

@ -18,7 +18,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoNDSorting.h> #include "../eoNDSorting.h"
#include "PyEO.h" #include "PyEO.h"

View file

@ -18,7 +18,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <utils/eoRNG.h> #include "../utils/eoRNG.h"
#include <boost/python.hpp> #include <boost/python.hpp>
using namespace boost::python; using namespace boost::python;

View file

@ -18,7 +18,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoReduce.h> #include "../eoReduce.h"
#include "PyEO.h" #include "PyEO.h"

View file

@ -18,11 +18,11 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoReplacement.h> #include "../eoReplacement.h"
#include <eoMergeReduce.h> #include "../eoMergeReduce.h"
#include <eoReduceMerge.h> #include "../eoReduceMerge.h"
#include <eoReduceMergeReduce.h> #include "../eoReduceMergeReduce.h"
#include <eoMGGReplacement.h> #include "../eoMGGReplacement.h"
#include "PyEO.h" #include "PyEO.h"
#include "def_abstract_functor.h" #include "def_abstract_functor.h"

View file

@ -18,12 +18,12 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoSelectOne.h> #include "../eoSelectOne.h"
#include <eoDetTournamentSelect.h> #include "../eoDetTournamentSelect.h"
#include <eoRandomSelect.h> #include "../eoRandomSelect.h"
#include <eoStochTournamentSelect.h> #include "../eoStochTournamentSelect.h"
#include <eoTruncatedSelectOne.h> #include "../eoTruncatedSelectOne.h"
#include <eoSequentialSelect.h> #include "../eoSequentialSelect.h"
#include "PyEO.h" #include "PyEO.h"
#include "pickle.h" #include "pickle.h"

View file

@ -18,13 +18,13 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <eoSelect.h> #include "../eoSelect.h"
#include <eoDetSelect.h> #include "../eoDetSelect.h"
#include <eoSelectMany.h> #include "../eoSelectMany.h"
#include <eoSelectNumber.h> #include "../eoSelectNumber.h"
#include <eoSelectPerc.h> #include "../eoSelectPerc.h"
#include <eoTruncSelect.h> #include "../eoTruncSelect.h"
#include <eoTruncatedSelectMany.h> #include "../eoTruncatedSelectMany.h"
#include "PyEO.h" #include "PyEO.h"
#include "def_abstract_functor.h" #include "def_abstract_functor.h"

View file

@ -1,4 +1,4 @@
#include <utils/eoStat.h> #include "../utils/eoStat.h"
#include "PyEO.h" #include "PyEO.h"
#include "valueParam.h" #include "valueParam.h"

View file

@ -18,7 +18,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <utils/eoParam.h> #include "../utils/eoParam.h"
#include <stdexcept> #include <stdexcept>
// Here's 'len'. Why? dunno // Here's 'len'. Why? dunno