fill the rest of the tag
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1125 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
92e83a8e2f
commit
3208650154
9 changed files with 2669 additions and 0 deletions
1
tags/paradiseo-ix86-1.1/.mpd.conf
Normal file
1
tags/paradiseo-ix86-1.1/.mpd.conf
Normal file
|
|
@ -0,0 +1 @@
|
|||
secretword=Nothing
|
||||
10
tags/paradiseo-ix86-1.1/AUTHORS
Normal file
10
tags/paradiseo-ix86-1.1/AUTHORS
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
Jean-Charles Boisson
|
||||
Sébastien Cahon
|
||||
Clive Canape
|
||||
Laetitia Jourdan
|
||||
Thomas Legrand
|
||||
Arnaud Liefooghe
|
||||
Nouredine Melab
|
||||
El-Ghazali Talbi
|
||||
Alexandru-Adrian Tantar
|
||||
|
||||
124
tags/paradiseo-ix86-1.1/INSTALL
Normal file
124
tags/paradiseo-ix86-1.1/INSTALL
Normal file
|
|
@ -0,0 +1,124 @@
|
|||
|
||||
==========================================================================================
|
||||
RELEASE
|
||||
==========================================================================================
|
||||
|
||||
The current release is paradiseo-ix86-1.1
|
||||
|
||||
==========================================================================================
|
||||
BUILDING PARADISEO FULL PACKAGE
|
||||
==========================================================================================
|
||||
The basic installation procedure must be done in the directory
|
||||
which contains the extracted archive.
|
||||
|
||||
--> Example : source installParadiseo.sh
|
||||
|
||||
Please try source installParadiseo.sh --help for further information
|
||||
|
||||
==========================================================================================
|
||||
DIRECTORY STRUCTURE
|
||||
==========================================================================================
|
||||
After unpacking the archive file, you should end up with the following
|
||||
structure:
|
||||
|
||||
.../ Installation directory (specified with ./installParadiseo.sh)
|
||||
|
|
||||
|
|
||||
+-- AUTHORS Author list
|
||||
|
|
||||
|
|
||||
+-- install.cmake ParadisEO main install config file
|
||||
|
|
||||
|
|
||||
+-- installParadiseo.sh Install script
|
||||
|
|
||||
+-- lib/
|
||||
| | +-- /libxml2-2.6.0.tar.bz2 LIBXML2 archive (required for ParadisEO)
|
||||
| | +-- /mpich2-1.0.3.tar.gz MPICH2 archive (required for ParadisEO)
|
||||
|
|
||||
|
|
||||
+ LICENCE Licence contents
|
||||
|
|
||||
|
|
||||
+-- paradiseo-eo paradiseo-eo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-mo paradiseo-mo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-moeo paradiseo-moeo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-peo paradiseo-peo dir
|
||||
|
|
||||
+-- README README file
|
||||
|
|
||||
|
|
||||
+-- .mpd.conf Paradiseo-peo config file
|
||||
|
||||
|
||||
==========================================================================================
|
||||
DIRECTORY STRUCTURE AFTER INSTALLATION
|
||||
==========================================================================================
|
||||
After running the script "installParadiseo.sh" and if the process is successful,
|
||||
you should have the following structure :
|
||||
|
||||
.../ Installation directory (specified with ./installParadiseo.sh)
|
||||
|
|
||||
|
|
||||
+-- AUTHORS Author list
|
||||
|
|
||||
|
|
||||
+-- install.cmake ParadisEO main install config file
|
||||
|
|
||||
|
|
||||
+-- installParadiseo.sh Install script
|
||||
|
|
||||
+-- lib/
|
||||
| | +-- /libxml2-2.6.0.tar.bz2 LIBXML2 archive (required for ParadisEO-PEO)
|
||||
| | +-- /mpich2-1.0.3.tar.gz MPICH2 archive (required for ParadisEO-PEO)
|
||||
|
|
||||
+-- libxml2 Libxml2 install directory (required for ParadisEO-PEO)
|
||||
|
|
||||
+ LICENCE Licence contents
|
||||
|
|
||||
|
|
||||
+-- mpich2 Mpich2 install directory (required for ParadisEO-PEO)
|
||||
|
|
||||
|
|
||||
+-- paradiseo-eo paradiseo-eo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-mo paradiseo-mo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-moeo paradiseo-moeo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-peo paradiseo-peo dir
|
||||
|
|
||||
+-- README README file
|
||||
|
|
||||
|
|
||||
+-- .mpd.conf Paradiseo-peo config file
|
||||
|
||||
|
||||
==========================================================================================
|
||||
NOTES
|
||||
==========================================================================================
|
||||
|
||||
ParadisEO uses EO, a templates-based, ANSI-C++ compliant evolutionary computation library.
|
||||
It contains classes for almost any kind of evolutionary computation you might come up to - at
|
||||
least for the ones we could think of.
|
||||
EO Website: http://eodev.sourceforge.net/.
|
||||
EO is distributed under the GNU Lesser General Public License: http://www.gnu.org/copyleft/lesser.html
|
||||
|
||||
|
||||
Please read README file of each extracted directory if you have
|
||||
problems for the installation.
|
||||
|
||||
==========================================================================================
|
||||
CONTACT
|
||||
==========================================================================================
|
||||
For further information about ParadisEO, help or to report any
|
||||
problem : paradiseo-help@lists.gforge.inria.fr
|
||||
1019
tags/paradiseo-ix86-1.1/LICENSE
Normal file
1019
tags/paradiseo-ix86-1.1/LICENSE
Normal file
File diff suppressed because it is too large
Load diff
131
tags/paradiseo-ix86-1.1/README
Normal file
131
tags/paradiseo-ix86-1.1/README
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
|
||||
==========================================================================================
|
||||
RELEASE
|
||||
==========================================================================================
|
||||
|
||||
The current release is paradiseo-ix86-1.1
|
||||
|
||||
==========================================================================================
|
||||
BUILDING PARADISEO FULL PACKAGE
|
||||
==========================================================================================
|
||||
The basic installation procedure must be done in the directory
|
||||
which contains the extracted archive.
|
||||
|
||||
--> Example : source installParadiseo.sh
|
||||
|
||||
Please try source installParadiseo.sh --help for further information
|
||||
|
||||
==========================================================================================
|
||||
DIRECTORY STRUCTURE
|
||||
==========================================================================================
|
||||
After unpacking the archive file, you should end up with the following
|
||||
structure:
|
||||
|
||||
.../ Installation directory (specified with ./installParadiseo.sh)
|
||||
|
|
||||
|
|
||||
+-- AUTHORS Author list
|
||||
|
|
||||
|
|
||||
+-- INSTALL
|
||||
|
|
||||
|
|
||||
+-- install.cmake ParadisEO main install config file
|
||||
|
|
||||
|
|
||||
+-- installParadiseo.sh Install script
|
||||
|
|
||||
+-- lib/
|
||||
| | +-- /libxml2-2.6.0.tar.bz2 LIBXML2 archive (required for ParadisEO)
|
||||
| | +-- /mpich2-1.0.3.tar.gz MPICH2 archive (required for ParadisEO)
|
||||
|
|
||||
|
|
||||
+ LICENSE Licence contents
|
||||
|
|
||||
|
|
||||
+-- paradiseo-eo paradiseo-eo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-mo paradiseo-mo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-moeo paradiseo-moeo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-peo paradiseo-peo dir
|
||||
|
|
||||
+-- README README file
|
||||
|
|
||||
|
|
||||
+-- .mpd.conf Paradiseo-peo config file
|
||||
|
||||
|
||||
==========================================================================================
|
||||
DIRECTORY STRUCTURE AFTER INSTALLATION
|
||||
==========================================================================================
|
||||
After running the script "installParadiseo.sh" and if the process is successful,
|
||||
you should have the following structure :
|
||||
|
||||
.../ Installation directory (specified with ./installParadiseo.sh)
|
||||
|
|
||||
|
|
||||
+-- AUTHORS Author list
|
||||
|
|
||||
|
|
||||
+-- install.cmake ParadisEO main install config file
|
||||
|
|
||||
|
|
||||
+-- installParadiseo.sh Install script
|
||||
|
|
||||
|
|
||||
+-- INSTALL
|
||||
|
|
||||
|
|
||||
+-- lib/
|
||||
| | +-- /libxml2-2.6.0.tar.bz2 LIBXML2 archive (required for ParadisEO-PEO)
|
||||
| | +-- /mpich2-1.0.3.tar.gz MPICH2 archive (required for ParadisEO-PEO)
|
||||
|
|
||||
+-- libxml2 Libxml2 install directory (required for ParadisEO-PEO)
|
||||
|
|
||||
+ LICENSE Licence contents
|
||||
|
|
||||
|
|
||||
+-- mpich2 Mpich2 install directory (required for ParadisEO-PEO)
|
||||
|
|
||||
|
|
||||
+-- paradiseo-eo paradiseo-eo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-mo paradiseo-mo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-moeo paradiseo-moeo dir
|
||||
|
|
||||
|
|
||||
+-- paradiseo-peo paradiseo-peo dir
|
||||
|
|
||||
+-- README README file
|
||||
|
|
||||
|
|
||||
+-- .mpd.conf Paradiseo-peo config file
|
||||
|
||||
|
||||
==========================================================================================
|
||||
NOTES
|
||||
==========================================================================================
|
||||
|
||||
ParadisEO uses EO, a templates-based, ANSI-C++ compliant evolutionary computation library.
|
||||
It contains classes for almost any kind of evolutionary computation you might come up to - at
|
||||
least for the ones we could think of.
|
||||
EO Website: http://eodev.sourceforge.net/.
|
||||
EO is distributed under the GNU Lesser General Public License: http://www.gnu.org/copyleft/lesser.html
|
||||
|
||||
|
||||
Please read README file of each extracted directory if you have
|
||||
problems for the installation.
|
||||
|
||||
==========================================================================================
|
||||
CONTACT
|
||||
==========================================================================================
|
||||
For further information about ParadisEO, help or to report any
|
||||
problem : paradiseo-help@lists.gforge.inria.fr
|
||||
126
tags/paradiseo-ix86-1.1/install.cmake
Normal file
126
tags/paradiseo-ix86-1.1/install.cmake
Normal file
|
|
@ -0,0 +1,126 @@
|
|||
|
||||
|
||||
######################################################################################
|
||||
### CMake basic configuration
|
||||
######################################################################################
|
||||
|
||||
# check cmake version compatibility
|
||||
CMAKE_MINIMUM_REQUIRED(VERSION 2.4 FATAL_ERROR)
|
||||
|
||||
# regular expression checking
|
||||
INCLUDE_REGULAR_EXPRESSION("^.*$" "^$")
|
||||
|
||||
# set a language for the entire project.
|
||||
ENABLE_LANGUAGE(CXX)
|
||||
ENABLE_LANGUAGE(C)
|
||||
|
||||
####################################################################################
|
||||
|
||||
|
||||
#####################################################################################
|
||||
### Include required modules & utilities
|
||||
#####################################################################################
|
||||
INCLUDE(CMakeBackwardCompatibilityCXX)
|
||||
|
||||
INCLUDE(FindDoxygen)
|
||||
|
||||
INCLUDE(FindGnuplot)
|
||||
|
||||
INCLUDE(CheckLibraryExists)
|
||||
|
||||
INCLUDE(Dart OPTIONNAL)
|
||||
|
||||
# the project can have a DartConfig.cmake file
|
||||
INCLUDE(DartConfig.cmake OPTIONNAL)
|
||||
|
||||
# Set a special flag if the environment is windows (should do the same in a config.g file)
|
||||
IF (WIN32)
|
||||
ADD_DEFINITIONS(-D_WINDOWS=1)
|
||||
ENDIF (WIN32)
|
||||
######################################################################################
|
||||
|
||||
|
||||
#####################################################################################
|
||||
### Manage the build type
|
||||
#####################################################################################
|
||||
|
||||
# the user should choose the build type on windows environments,excepted under cygwin (default=none)
|
||||
SET(CMAKE_DEFAULT_BUILD_TYPE "Release" CACHE STRING "Variable that stores the default CMake build type" FORCE)
|
||||
|
||||
FIND_PROGRAM(MEMORYCHECK_COMMAND
|
||||
NAMES purify valgrind
|
||||
PATHS
|
||||
"/usr/local/bin /usr/bin [HKEY_LOCAL_MACHINE\\SOFTWARE\\Rational Software\\Purify\\Setup;InstallFolder]"
|
||||
DOC "Path to the memory checking command, used for memory error detection.")
|
||||
IF(NOT CMAKE_BUILD_TYPE)
|
||||
SET( CMAKE_BUILD_TYPE
|
||||
${CMAKE_DEFAULT_BUILD_TYPE} CACHE STRING
|
||||
"Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel."
|
||||
FORCE)
|
||||
ENDIF(NOT CMAKE_BUILD_TYPE)
|
||||
|
||||
IF(WIN32 AND NOT CYGWIN)
|
||||
IF(CMAKE_CXX_COMPILER MATCHES cl)
|
||||
IF(NOT WITH_SHARED_LIBS)
|
||||
IF(CMAKE_GENERATOR STREQUAL "Visual Studio 8 2005" OR CMAKE_GENERATOR STREQUAL "Visual Studio 9 2008")
|
||||
SET(CMAKE_CXX_FLAGS "/nologo /W3 /Gy")
|
||||
SET(CMAKE_CXX_FLAGS_DEBUG "/MTd /Z7 /Od")
|
||||
SET(CMAKE_CXX_FLAGS_RELEASE "/MT /O2")
|
||||
SET(CMAKE_CXX_FLAGS_MINSIZEREL "/MT /O2")
|
||||
SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "/MTd /Z7 /Od")
|
||||
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /SUBSYSTEM:CONSOLE")
|
||||
ENDIF(CMAKE_GENERATOR STREQUAL "Visual Studio 8 2005" OR CMAKE_GENERATOR STREQUAL "Visual Studio 9 2008")
|
||||
ENDIF(NOT WITH_SHARED_LIBS)
|
||||
ENDIF(CMAKE_CXX_COMPILER MATCHES cl)
|
||||
ELSE(WIN32 AND NOT CYGWIN)
|
||||
IF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g -fprofile-arcs -ftest-coverage -Wall -Wextra")
|
||||
SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O2")
|
||||
SET(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} -O6")
|
||||
ENDIF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
ENDIF(WIN32 AND NOT CYGWIN)
|
||||
|
||||
IF(CMAKE_BUILD_TYPE MATCHES Debug)
|
||||
ADD_DEFINITIONS(-DCMAKE_VERBOSE_MAKEFILE=ON)
|
||||
ENDIF(CMAKE_BUILD_TYPE MATCHES Debug)
|
||||
|
||||
#####################################################################################
|
||||
|
||||
|
||||
######################################################################################
|
||||
### Test config
|
||||
######################################################################################
|
||||
|
||||
#SET(ENABLE_CMAKE_TESTING TRUE CACHE BOOL "Enable testing ?")
|
||||
|
||||
IF (ENABLE_CMAKE_TESTING)
|
||||
ENABLE_TESTING()
|
||||
ENDIF (ENABLE_CMAKE_TESTING)
|
||||
######################################################################################
|
||||
|
||||
|
||||
######################################################################################
|
||||
### Subdirectories that CMake should process for MO, MOEO and PEO
|
||||
######################################################################################
|
||||
|
||||
SUBDIRS( doc src test tutorial)
|
||||
|
||||
######################################################################################
|
||||
|
||||
|
||||
#######################################################################################
|
||||
### Paths to EO, MO and MOEO must be specified above.
|
||||
#######################################################################################
|
||||
|
||||
SET(EO_SRC_DIR "${CMAKE_SOURCE_DIR}/../paradiseo-eo" CACHE PATH "ParadisEO-EO source directory" FORCE)
|
||||
SET(EO_BIN_DIR "${CMAKE_BINARY_DIR}/../../paradiseo-eo/build" CACHE PATH "ParadisEO-EO binary directory" FORCE)
|
||||
|
||||
SET(MO_SRC_DIR "${CMAKE_SOURCE_DIR}/../paradiseo-mo" CACHE PATH "ParadisMO-MO source directory" FORCE)
|
||||
SET(MO_BIN_DIR "${CMAKE_BINARY_DIR}/../../paradiseo-mo/build" CACHE PATH "ParadisMO-MO binary directory" FORCE)
|
||||
|
||||
SET(MOEO_SRC_DIR "${CMAKE_SOURCE_DIR}/../paradiseo-moeo" CACHE PATH "ParadisMOEO-MOEO source directory" FORCE)
|
||||
SET(MOEO_BIN_DIR "${CMAKE_BINARY_DIR}/../../paradiseo-moeo/build" CACHE PATH "ParadisMOEO-MOEO binary directory" FORCE)
|
||||
|
||||
#######################################################################################
|
||||
|
||||
|
||||
1258
tags/paradiseo-ix86-1.1/installParadiseo.sh
Executable file
1258
tags/paradiseo-ix86-1.1/installParadiseo.sh
Executable file
File diff suppressed because it is too large
Load diff
BIN
tags/paradiseo-ix86-1.1/lib/libxml2-2.6.0.tar.bz2
Normal file
BIN
tags/paradiseo-ix86-1.1/lib/libxml2-2.6.0.tar.bz2
Normal file
Binary file not shown.
BIN
tags/paradiseo-ix86-1.1/lib/mpich2-1.0.3.tar.gz
Normal file
BIN
tags/paradiseo-ix86-1.1/lib/mpich2-1.0.3.tar.gz
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue