Changing the include file that contain all include from
eoparadiseo to eoparadiseo.h because teh CVS tool in Microsoft Windaube doesn't make the difference with the directory ParadisEO
This commit is contained in:
parent
64ca17c66f
commit
a1fffff045
8 changed files with 19 additions and 15 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#include <paradiseo>
|
||||
#include <paradiseo.h>
|
||||
#include <ga.h>
|
||||
|
||||
typedef eoBit <double> Indi; // A bitstring with fitness double
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#include <paradiseo>
|
||||
#include <paradiseo.h>
|
||||
#include <ga.h>
|
||||
|
||||
typedef eoBit <double> Indi; // A bitstring with fitness double
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#include <paradiseo>
|
||||
#include <paradiseo.h>
|
||||
#include <ga.h>
|
||||
|
||||
typedef eoBit <double> Indi; // A bitstring with fitness double
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
MPICC = ./mpiCC
|
||||
|
||||
ALL = IslandBitEA IslandBitEA2 IslandBitEA1
|
||||
|
||||
lesson2 : IslandBitEA IslandBitEA2 IslandBitEA1
|
||||
|
|
@ -8,20 +10,20 @@ clean :
|
|||
@/bin/rm $(ALL) *.o *~
|
||||
|
||||
IslandBitEA : IslandBitEA.o
|
||||
mpiCC -DPACKAGE=\"eo\" -o IslandBitEA IslandBitEA.o ../../../src/utils/libeoutils.a ../../../src/libeo.a
|
||||
$(MPICC) -DPACKAGE=\"eo\" -o IslandBitEA IslandBitEA.o ../../../src/utils/libeoutils.a ../../../src/libeo.a
|
||||
|
||||
IslandBitEA.o : IslandBitEA.cpp binary_value.h
|
||||
mpiCC -DPACKAGE=\"eo\" -I. -I../../../src -c IslandBitEA.cpp
|
||||
$(MPICC) -DPACKAGE=\"eo\" -I. -I../../../src -c IslandBitEA.cpp
|
||||
|
||||
IslandBitEA1 : IslandBitEA1.o
|
||||
mpiCC -DPACKAGE=\"eo\" -o IslandBitEA1 IslandBitEA1.o ../../../src/utils/libeoutils.a ../../../src/libeo.a
|
||||
$(MPICC) -DPACKAGE=\"eo\" -o IslandBitEA1 IslandBitEA1.o ../../../src/utils/libeoutils.a ../../../src/libeo.a
|
||||
|
||||
IslandBitEA1.o : IslandBitEA1.cpp binary_value.h
|
||||
mpiCC -DPACKAGE=\"eo\" -I. -I../../../src -c IslandBitEA1.cpp
|
||||
$(MPICC) -DPACKAGE=\"eo\" -I. -I../../../src -c IslandBitEA1.cpp
|
||||
|
||||
IslandBitEA2 : IslandBitEA2.o
|
||||
mpiCC -DPACKAGE=\"eo\" -o IslandBitEA2 IslandBitEA2.o ../../../src/utils/libeoutils.a ../../../src/libeo.a
|
||||
$(MPICC) -DPACKAGE=\"eo\" -o IslandBitEA2 IslandBitEA2.o ../../../src/utils/libeoutils.a ../../../src/libeo.a
|
||||
|
||||
IslandBitEA2.o : IslandBitEA2.cpp binary_value.h
|
||||
mpiCC -DPACKAGE=\"eo\" -I. -I../../../src -c IslandBitEA2.cpp
|
||||
$(MPICC) -DPACKAGE=\"eo\" -I. -I../../../src -c IslandBitEA2.cpp
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
MPICC = ./mpiCC
|
||||
|
||||
ALL = MasterDistEvalBitEA SlaveDistEvalBitEA
|
||||
|
||||
lesson2 : MasterDistEvalBitEA SlaveDistEvalBitEA
|
||||
|
|
@ -8,14 +10,14 @@ clean :
|
|||
@/bin/rm $(ALL) *.o *~
|
||||
|
||||
MasterDistEvalBitEA : MasterDistEvalBitEA.o
|
||||
mpiCC -DPACKAGE=\"eo\" -o MasterDistEvalBitEA MasterDistEvalBitEA.o ../../../src/utils/libeoutils.a ../../../src/libeo.a
|
||||
$(MPICC) -DPACKAGE=\"eo\" -o MasterDistEvalBitEA MasterDistEvalBitEA.o ../../../src/utils/libeoutils.a ../../../src/libeo.a
|
||||
|
||||
MasterDistEvalBitEA.o : MasterDistEvalBitEA.cpp binary_value.h
|
||||
mpiCC -DPACKAGE=\"eo\" -I. -I../../../src -c MasterDistEvalBitEA.cpp
|
||||
$(MPICC) -DPACKAGE=\"eo\" -I. -I../../../src -c MasterDistEvalBitEA.cpp
|
||||
|
||||
SlaveDistEvalBitEA : SlaveDistEvalBitEA.o
|
||||
mpiCC -DPACKAGE=\"eo\" -o SlaveDistEvalBitEA SlaveDistEvalBitEA.o ../../../src/utils/libeoutils.a ../../../src/libeo.a
|
||||
$(MPICC) -DPACKAGE=\"eo\" -o SlaveDistEvalBitEA SlaveDistEvalBitEA.o ../../../src/utils/libeoutils.a ../../../src/libeo.a
|
||||
|
||||
SlaveDistEvalBitEA.o : SlaveDistEvalBitEA.cpp binary_value.h
|
||||
mpiCC -DPACKAGE=\"eo\" -I. -I../../../src -c SlaveDistEvalBitEA.cpp
|
||||
$(MPICC) -DPACKAGE=\"eo\" -I. -I../../../src -c SlaveDistEvalBitEA.cpp
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#include <iostream>
|
||||
#include <strstream>
|
||||
|
||||
#include <paradiseo>
|
||||
#include <paradiseo.h>
|
||||
#include <ga.h>
|
||||
|
||||
typedef eoBit<double> Indi ; // A bitstring with fitness double
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#include <iostream> // cout
|
||||
#include <strstream> // ostrstream, istrstream
|
||||
|
||||
#include <paradiseo>
|
||||
#include <paradiseo.h>
|
||||
#include <ga.h>
|
||||
|
||||
typedef eoBit<double> Indi; // A bitstring with fitness double
|
||||
|
|
|
|||
Reference in a new issue