From 5961c3c3ddacb8f3a7574708e990c9853ff5d9e6 Mon Sep 17 00:00:00 2001 From: legrand Date: Thu, 28 Jun 2007 12:17:56 +0000 Subject: [PATCH] makefile cleaned and Doxyfile--> mo.doxyfile git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@434 331e1502-861f-0410-8da2-ba01fb791d7f --- trunk/paradiseo-mo/ChangeLog | 0 trunk/paradiseo-mo/Makefile.am | 30 - trunk/paradiseo-mo/autogen.sh | 154 --- trunk/paradiseo-mo/cleaner | 8 - trunk/paradiseo-mo/configure.in | 58 - trunk/paradiseo-mo/doc/Makefile.am | 5 - .../doc/{Doxyfile => mo.doxyfile} | 0 trunk/paradiseo-mo/doc/mo.doxytag | 1082 ----------------- trunk/paradiseo-mo/src/Makefile.am | 1 - trunk/paradiseo-mo/tutorial/Makefile.am | 1 - 10 files changed, 1339 deletions(-) delete mode 100755 trunk/paradiseo-mo/ChangeLog delete mode 100755 trunk/paradiseo-mo/Makefile.am delete mode 100755 trunk/paradiseo-mo/autogen.sh delete mode 100755 trunk/paradiseo-mo/cleaner delete mode 100755 trunk/paradiseo-mo/configure.in delete mode 100644 trunk/paradiseo-mo/doc/Makefile.am rename trunk/paradiseo-mo/doc/{Doxyfile => mo.doxyfile} (100%) delete mode 100644 trunk/paradiseo-mo/doc/mo.doxytag delete mode 100755 trunk/paradiseo-mo/src/Makefile.am delete mode 100644 trunk/paradiseo-mo/tutorial/Makefile.am diff --git a/trunk/paradiseo-mo/ChangeLog b/trunk/paradiseo-mo/ChangeLog deleted file mode 100755 index e69de29bb..000000000 diff --git a/trunk/paradiseo-mo/Makefile.am b/trunk/paradiseo-mo/Makefile.am deleted file mode 100755 index 1d666263d..000000000 --- a/trunk/paradiseo-mo/Makefile.am +++ /dev/null @@ -1,30 +0,0 @@ -SUBDIRS = doc src tutorial - -CXX=g++ - -AM_CXXFLAGS =\ - -Wall\ - -Werror\ - -Wno-deprecated\ - -ansi\ - -pedantic - -clean_all: clean_aux clean_doc - -@make clean - -@(rm -rf acconfig.h acinclude.m4 aclocal.m4 autom4te.cache copying install news readme stamp* texput.log authors todo;\ - rm -f configure config.* CO* dep* INST* install-sh miss* mkins* Makefile Makefile.in;\ - cd docs; rm -rf Makefile Makefile.in; cd ../src ; rm -rf Makefile Makefile.in; cd ../tutorial; rm -rf Makefile Makefile.in;\ - cd examples; rm -f Makefile Makefile.in; cd tsp ; rm -f Makefile Makefile.in; cd src ; rm -rf .deps/ Makefile Makefile.in;\ - cd ../../../Lesson1 ; rm -rf .deps/ Makefile Makefile.in; cd ../Lesson2 ; rm -rf .deps/ Makefile Makefile.in ; cd ../Lesson3 ;\ - rm -rf .deps/ Makefile Makefile.in) - -clean_aux: - -@find . \( -name "*~" -o -name "*.old" -o -name "#*" -o -name "*.bak" \) -print -exec rm -rf \{\} \; - -doc: - -@(cd doc; make doc) - -clean_doc: - -@(cd doc; make clean-local) - -.PHONY: clean_all clean_aux doc clean_doc diff --git a/trunk/paradiseo-mo/autogen.sh b/trunk/paradiseo-mo/autogen.sh deleted file mode 100755 index 0a4e95695..000000000 --- a/trunk/paradiseo-mo/autogen.sh +++ /dev/null @@ -1,154 +0,0 @@ -#!/bin/sh -# Run this to generate all the initial makefiles, etc. - -srcdir=`dirname $0` -PKG_NAME="the package." - -DIE=0 - -(autoconf --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`autoconf' installed to." - echo "Download the appropriate package for your distribution," - echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" - DIE=1 -} - -(grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && { - (libtool --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`libtool' installed." - echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.2d.tar.gz" - echo "(or a newer version if it is available)" - DIE=1 - } -} - -grep "^AM_GNU_GETTEXT" $srcdir/configure.in >/dev/null && { - grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \ - (gettext --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`gettext' installed." - echo "Get ftp://alpha.gnu.org/gnu/gettext-0.10.35.tar.gz" - echo "(or a newer version if it is available)" - DIE=1 - } -} - -grep "^AM_GNOME_GETTEXT" $srcdir/configure.in >/dev/null && { - grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \ - (gettext --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`gettext' installed." - echo "Get ftp://alpha.gnu.org/gnu/gettext-0.10.35.tar.gz" - echo "(or a newer version if it is available)" - DIE=1 - } -} - -(automake --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`automake' installed." - echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz" - echo "(or a newer version if it is available)" - DIE=1 - NO_AUTOMAKE=yes -} - -(doxygen --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**WARNING**: You need to have \`doxygen' to generate the documentation." - echo "Download the appropriate package for your distribution," - echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" -} - -# if no automake, don't bother testing for aclocal -test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: Missing \`aclocal'. The version of \`automake'" - echo "installed doesn't appear recent enough." - echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz" - echo "(or a newer version if it is available)" - DIE=1 -} - -if test "$DIE" -eq 1; then - exit 1 -fi - -if test -z "$*"; then - echo "**Warning**: I am going to run \`configure' with no arguments." - echo "If you wish to pass any to it, please specify them on the" - echo \`$0\'" command line." - echo -fi - -case $CC in -xlc ) - am_opt=--include-deps;; -esac - -for coin in `find $srcdir -name configure.in -print` -do - dr=`dirname $coin` - if test -f $dr/NO-AUTO-GEN; then - echo skipping $dr -- flagged as no auto-gen - else - echo processing $dr - macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < $coin` - ( cd $dr - aclocalinclude="$ACLOCAL_FLAGS" - for k in $macrodirs; do - if test -d $k; then - aclocalinclude="$aclocalinclude -I $k" - ##else - ## echo "**Warning**: No such directory \`$k'. Ignored." - fi - done - if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then - if grep "sed.*POTFILES" configure.in >/dev/null; then - : do nothing -- we still have an old unmodified configure.in - else - echo "Creating $dr/aclocal.m4 ..." - test -r $dr/aclocal.m4 || touch $dr/aclocal.m4 - echo "Running gettextize... Ignore non-fatal messages." - echo "no" | gettextize --force --copy - echo "Making $dr/aclocal.m4 writable ..." - test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 - fi - fi - if grep "^AM_GNOME_GETTEXT" configure.in >/dev/null; then - echo "Creating $dr/aclocal.m4 ..." - test -r $dr/aclocal.m4 || touch $dr/aclocal.m4 - echo "Running gettextize... Ignore non-fatal messages." - echo "no" | gettextize --force --copy - echo "Making $dr/aclocal.m4 writable ..." - test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 - fi - if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then - echo "Running libtoolize..." - libtoolize --force --copy - fi - echo "Running aclocal $aclocalinclude ..." - aclocal $aclocalinclude - if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then - echo "Running autoheader..." - autoheader - fi - echo "Running automake --gnu $am_opt ..." - automake --add-missing --gnu $am_opt - echo "Running autoconf ..." - autoconf - ) - fi -done - -#conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c - -if test x$NOCONFIGURE = x; then - echo Running $srcdir/configure $conf_flags "$@" ... - $srcdir/configure $conf_flags "$@" \ - && echo Now type \`make\' to compile $PKG_NAME -else - echo Skipping configure process. -fi diff --git a/trunk/paradiseo-mo/cleaner b/trunk/paradiseo-mo/cleaner deleted file mode 100755 index 241f2ca92..000000000 --- a/trunk/paradiseo-mo/cleaner +++ /dev/null @@ -1,8 +0,0 @@ -(rm -rf acconfig.h acinclude.m4 aclocal.m4 autom4te.cache copying install news readme stamp* texput.log authors todo;\ -rm -f configure config.* CO* dep* INST* install-sh miss* mkins* Makefile Makefile.in;\ -cd doc; rm -rf Makefile Makefile.in; cd ../src ; rm -rf Makefile Makefile.in; cd ../tutorial; rm -rf Makefile Makefile.in;\ -cd examples; rm -f Makefile Makefile.in; cd tsp ; rm -f Makefile Makefile.in; cd src ; rm -rf .deps/ Makefile Makefile.in;\ -cd ../../../Lesson1 ; rm -rf .deps/ Makefile Makefile.in; cd src; rm -rf .deps/ Makefile Makefile.in; cd ../../Lesson2 ;\ - rm -rf .deps/ Makefile Makefile.in ; cd src; rm -rf .deps/ Makefile Makefile.in; cd ../../Lesson3 ;\ -rm -rf .deps/ Makefile Makefile.in; cd src; rm -rf .deps/ Makefile Makefile.in) -find . \( -name "*~" -o -name "*.old" -o -name "#*" -o -name "*.bak" -o -name "*.o" \) -print -exec rm -rf \{\} \; diff --git a/trunk/paradiseo-mo/configure.in b/trunk/paradiseo-mo/configure.in deleted file mode 100755 index ac104d6bf..000000000 --- a/trunk/paradiseo-mo/configure.in +++ /dev/null @@ -1,58 +0,0 @@ -AC_INIT(configure.in) -AM_INIT_AUTOMAKE(paradiseo-mo, 0.1) - -dnl Autoconf 2.6 or higher compatibility -AC_DEFUN([AC_DATAROOTDIR_CHECKED]) - -AC_ISC_POSIX -AC_PROG_CXX -AM_PROG_CC_STDC -AC_HEADER_STDC -#AC_CXX_HAVE_SSTREAM -AC_PROG_RANLIB - -AC_PROG_INSTALL -AC_PROG_LN_S -AC_PROG_MAKE_SET - -AC_C_CONST -AC_C_INLINE -AC_TYPE_SIZE_T - -AC_SUBST(EO_DIR) - -dnl EO -AC_ARG_WITH(EOdir, - --with-EOdir : Giving the path of the EO tree., - dnl Well done :-) - EO_DIR="$withval" - if test ! -d $EO_DIR - then - echo "" - echo "# --with-EOdir Invalid directory $withval" - exit 1 - fi, - dnl Bouhhhh !!!! - echo "" - echo "# You forgot to give the path of the EO tree !" - echo "# Please write something like ... './configure --with-EOdir=\$HOME/eo'" - exit 1 - ) - -AC_OUTPUT([ -Makefile -src/Makefile -doc/Makefile -tutorial/Makefile -tutorial/examples/Makefile -tutorial/examples/tsp/Makefile -tutorial/examples/tsp/src/Makefile -tutorial/Lesson1/Makefile -tutorial/Lesson1/src/Makefile -tutorial/Lesson2/Makefile -tutorial/Lesson2/src/Makefile -tutorial/Lesson3/Makefile -tutorial/Lesson3/src/Makefile -]) - -echo "Type 'make doc' for building documentation" diff --git a/trunk/paradiseo-mo/doc/Makefile.am b/trunk/paradiseo-mo/doc/Makefile.am deleted file mode 100644 index bad00ad7c..000000000 --- a/trunk/paradiseo-mo/doc/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -doc: - -@doxygen Doxyfile - -clean-local: - rm -rf html latex man diff --git a/trunk/paradiseo-mo/doc/Doxyfile b/trunk/paradiseo-mo/doc/mo.doxyfile similarity index 100% rename from trunk/paradiseo-mo/doc/Doxyfile rename to trunk/paradiseo-mo/doc/mo.doxyfile diff --git a/trunk/paradiseo-mo/doc/mo.doxytag b/trunk/paradiseo-mo/doc/mo.doxytag deleted file mode 100644 index 8769bf31d..000000000 --- a/trunk/paradiseo-mo/doc/mo.doxytag +++ /dev/null @@ -1,1082 +0,0 @@ - - - - main - Welcome to PARADISEO-Moving Objects - main - intro - tutorial - install - design - - - EmptySelection - class_empty_selection.html - - - moAlgo - classmo_algo.html - EOT - eoMonOp< EOT > - - - moAspirCrit - classmo_aspir_crit.html - M - eoBF< const M &, const M::EOType::Fitness &, bool > - - virtual void - init - classmo_aspir_crit.html - a8ce84510a5ec7c9078381e542c6d140 - ()=0 - - - - moBestImprSelect - classmo_best_impr_select.html - M - moMoveSelect - - M::EOType::Fitness - Fitness - classmo_best_impr_select.html - c4ae17435221fb0a8e8acd285210cfcb - - - - void - init - classmo_best_impr_select.html - 2d2abf9aa17dc77cbb4f41810ab7b956 - (const Fitness &__fit) - - - bool - update - classmo_best_impr_select.html - d10e3e6f8a0277731e95ef506d064d6d - (const M &__move, const Fitness &__fit) - - - void - operator() - classmo_best_impr_select.html - 169773d4d127acd782cf379f758222da - (M &__move, Fitness &__fit) - - - bool - first_time - classmo_best_impr_select.html - 352b14d206b0772eb9f40efb7beb0f13 - - - - M - best_move - classmo_best_impr_select.html - bd86f70519f954c07ff0d8a2a3a8ff6a - - - - Fitness - best_fit - classmo_best_impr_select.html - dcac897424b5805f146bb1dbb429f2fe - - - - - moCoolingSchedule - classmo_cooling_schedule.html - eoUF< double &, bool > - - - moExponentialCoolingSchedule - classmo_exponential_cooling_schedule.html - moCoolingSchedule - - - moExponentialCoolingSchedule - classmo_exponential_cooling_schedule.html - b01930c1051c0940666c6325bfd036bc - (double __threshold, double __ratio) - - - bool - operator() - classmo_exponential_cooling_schedule.html - 00642b03453b51612a10fcf2280543db - (double &__temp) - - - double - threshold - classmo_exponential_cooling_schedule.html - 8d4327c0bb33b7121a322279eea97f84 - - - - double - ratio - classmo_exponential_cooling_schedule.html - e8f3f87417c1c7253efb938a740846fa - - - - - moFirstImprSelect - classmo_first_impr_select.html - M - moMoveSelect - - M::EOType::Fitness - Fitness - classmo_first_impr_select.html - 64763ce3e6d2873266624382b407fa5a - - - - virtual void - init - classmo_first_impr_select.html - 4c5ce18ede46247a439c68f6954a4055 - (const Fitness &__fit) - - - bool - update - classmo_first_impr_select.html - 7ba0882728daedc75c249647c070ccf0 - (const M &__move, const typename M::EOType::Fitness &__fit) - - - void - operator() - classmo_first_impr_select.html - 3be12cf4cbaed00df7c4fa735b2c0a95 - (M &__move, Fitness &__fit) - - - bool - valid - classmo_first_impr_select.html - a99c0586ba07449234705c17a258d58c - - - - M - best_move - classmo_first_impr_select.html - dfed419a608dd7c41f07fa1f1279cb8c - - - - Fitness - init_fit - classmo_first_impr_select.html - ce7ba63e8cc3a9164f4e546477e98ca8 - - - - Fitness - best_fit - classmo_first_impr_select.html - e1190347b76ec6fe717be32354b4a9a9 - - - - - moGenSolContinue - classmo_gen_sol_continue.html - EOT - moSolContinue - - - moGenSolContinue - classmo_gen_sol_continue.html - b56e890f1caa3f98e161c6512b59c95b - (unsigned int __maxNumGen) - - - bool - operator() - classmo_gen_sol_continue.html - 457257cd73b474d6f7783d84d02c2e61 - (const EOT &__sol) - - - void - init - classmo_gen_sol_continue.html - 6c5db8182157584b56507cc9075602d4 - () - - - unsigned int - maxNumGen - classmo_gen_sol_continue.html - 30b9861e090578bdfa2374806600987a - - - - unsigned int - numGen - classmo_gen_sol_continue.html - 630d9736a3a2c952540cdc211764258c - - - - - moHC - classmo_h_c.html - M - moAlgo< M::EOType > - - - moHC - classmo_h_c.html - 6cafe093f86a80c225827884cb9dc5b7 - (moMoveInit< M > &__move_init, moNextMove< M > &__next_move, moMoveIncrEval< M > &__incr_eval, moMoveSelect< M > &__move_select, eoEvalFunc< EOT > &__full_eval) - - - - moHC - classmo_h_c.html - 45f27309792e584a27fa6dcb86ccda65 - (moMoveExpl< M > &__move_expl, eoEvalFunc< EOT > &__full_eval) - - - bool - operator() - classmo_h_c.html - ed4e273c420efa6386c5975a696a5010 - (EOT &__sol) - - - M::EOType - EOT - classmo_h_c.html - d219296ede03c679646bce2fe8ff96cb - - - - EOT::Fitness - Fitness - classmo_h_c.html - 56487c97a7cf0c423cc879d1bbd45027 - - - - moMoveExpl< M > & - move_expl - classmo_h_c.html - f6bfb4553fb699f1e08f7d9c37d06103 - - - - eoEvalFunc< EOT > & - full_eval - classmo_h_c.html - 4b0d5cc70fc3d83f59a48b2bdea65736 - - - - - moHCMoveLoopExpl - classmo_h_c_move_loop_expl.html - M - moMoveLoopExpl - - - moHCMoveLoopExpl - classmo_h_c_move_loop_expl.html - 11410d648d79746253e9dc249c4ec7b5 - (moMoveInit< M > &__move_init, moNextMove< M > &__next_move, moMoveIncrEval< M > &__incr_eval, moMoveSelect< M > &__move_select) - - - void - operator() - classmo_h_c_move_loop_expl.html - f48d5379caac7f6a165e9fe8840e6ccb - (const EOT &__old_sol, EOT &__new_sol) - - - M::EOType - EOT - classmo_h_c_move_loop_expl.html - 077befd4106c201eafd3ea22bcea2fe9 - - - - M::EOType::Fitness - Fitness - classmo_h_c_move_loop_expl.html - f24871224316d5549b9013a2d27ab465 - - - - moMoveInit< M > & - move_init - classmo_h_c_move_loop_expl.html - 6776fc51331c1b452d026b92448b4ffc - - - - moNextMove< M > & - next_move - classmo_h_c_move_loop_expl.html - f716c5271e0eba9275c585dc52768443 - - - - moMoveIncrEval< M > & - incr_eval - classmo_h_c_move_loop_expl.html - 84a8fccba05ab30414281469bc8ee779 - - - - moMoveSelect< M > & - move_select - classmo_h_c_move_loop_expl.html - 13bcd1322b2b97fd665be2f60c532fbb - - - - - moImprBestFitAspirCrit - classmo_impr_best_fit_aspir_crit.html - M - moAspirCrit - - M::EOType::Fitness - Fitness - classmo_impr_best_fit_aspir_crit.html - 0bc1a8c9af99781e662570c04750cca8 - - - - - moImprBestFitAspirCrit - classmo_impr_best_fit_aspir_crit.html - e2c697a5cf3a7696e38bb52b6694a340 - () - - - void - init - classmo_impr_best_fit_aspir_crit.html - ffa451a14ff4ea86fb8bd9fdbc348630 - () - - - bool - operator() - classmo_impr_best_fit_aspir_crit.html - 53f62fb56dcae3051a741f1fddb0204b - (const M &__move, const Fitness &__fit) - - - Fitness - best_fit - classmo_impr_best_fit_aspir_crit.html - 9e52383f0af8013b4aff0942325e1bf3 - - - - bool - first_time - classmo_impr_best_fit_aspir_crit.html - 2d5226c7dd661b33011402dbbbe78265 - - - - - moItRandNextMove - classmo_it_rand_next_move.html - M - moNextMove - - - moItRandNextMove - classmo_it_rand_next_move.html - 2b61b3713d482ecf71db8d941551ff7a - (moRandMove< M > &__rand_move, unsigned int __max_iter) - - - bool - operator() - classmo_it_rand_next_move.html - 92a2fbbc02a20853b9a309e99018a102 - (M &__move, const EOT &__sol) - - - M::EOType - EOT - classmo_it_rand_next_move.html - ee666007fc494bf4a5f0cd065e5671cf - - - - moRandMove< M > & - rand_move - classmo_it_rand_next_move.html - ef9410ec5e7dfa7f002e05967931c459 - - - - unsigned int - max_iter - classmo_it_rand_next_move.html - dc67fa86677d7a4f982de8d8b1eba033 - - - - unsigned int - num_iter - classmo_it_rand_next_move.html - f43494b13931d8f76b5d9d5d6469e91b - - - - - moLinearCoolingSchedule - classmo_linear_cooling_schedule.html - moCoolingSchedule - - - moLinearCoolingSchedule - classmo_linear_cooling_schedule.html - 2fdde7b1520d5a41251627e81cc9c13d - (double __threshold, double __quantity) - - - bool - operator() - classmo_linear_cooling_schedule.html - 814b109fdfd9426a92a5444b05014da3 - (double &__temp) - - - double - threshold - classmo_linear_cooling_schedule.html - e7f539f986801ea71392c4a55ba08a76 - - - - double - quantity - classmo_linear_cooling_schedule.html - 6159dc39ceda89b23ffdab3d6ce8d8ed - - - - - moLSCheckPoint - classmo_l_s_check_point.html - M - eoBF< const M &, const M::EOType &, void > - - void - operator() - classmo_l_s_check_point.html - 2f9c1250279e3f49ec77a66c10029f1e - (const M &__move, const typename M::EOType &__sol) - - - void - add - classmo_l_s_check_point.html - 66be5fe2944bcdd752f1e58105e969a6 - (eoBF< const M &, const typename M::EOType &, void > &__f) - - - std::vector< eoBF< const M &, const typename M::EOType &, void > * > - func - classmo_l_s_check_point.html - ff2a31ee5689a804bd9a572c51a36ca4 - - - - - moMove - classmo_move.html - EOT - eoUF< EOT &, void > - - EOT - EOType - classmo_move.html - 7fb853a91ba1319530529e515380bbba - - - - - moMoveExpl - classmo_move_expl.html - M - eoBF< const M::EOType &, M::EOType &, void > - - - moMoveIncrEval - classmo_move_incr_eval.html - M - eoBF< const M &, const M::EOType &, M::EOType::Fitness > - - - moMoveInit - classmo_move_init.html - M - eoBF< M &, const M::EOType &, void > - - - moMoveLoopExpl - classmo_move_loop_expl.html - M - moMoveExpl - - - moMoveSelect - classmo_move_select.html - M - eoBF< M &, M::EOType::Fitness &, void > - - M::EOType::Fitness - Fitness - classmo_move_select.html - 8148ccc0e6fbd209c3fe6829559895c8 - - - - virtual void - init - classmo_move_select.html - bca4c43f13d26eca7163aeb272a4a52e - (const Fitness &__fit)=0 - - - virtual bool - update - classmo_move_select.html - 7c157b6e64fd417acf6e900059204eb1 - (const M &__move, const Fitness &__fit)=0 - - - - moNextMove - classmo_next_move.html - M - eoBF< M &, const M::EOType &, bool > - - - moNoAspirCrit - classmo_no_aspir_crit.html - M - moAspirCrit - - bool - operator() - classmo_no_aspir_crit.html - 8a7180a8d5c25bfb6727d0b59551b0f8 - (const M &__move, const typename M::EOType::Fitness &__sol) - - - void - init - classmo_no_aspir_crit.html - f3a286fc4c2d36bd390ba9a3074f3037 - () - - - - moRandImprSelect - classmo_rand_impr_select.html - M - moMoveSelect - - M::EOType::Fitness - Fitness - classmo_rand_impr_select.html - 3bff2fdb963297430543c82ffb567a5c - - - - void - init - classmo_rand_impr_select.html - a19726a1509cff874801615d63a3b5d9 - (const Fitness &__fit) - - - bool - update - classmo_rand_impr_select.html - 60ae5548560caee7e28d5ed2446186c9 - (const M &__move, const Fitness &__fit) - - - void - operator() - classmo_rand_impr_select.html - 5ee57f77a450c0a9ce50bfccf3ad2a55 - (M &__move, Fitness &__fit) - - - Fitness - init_fit - classmo_rand_impr_select.html - d153c277a0a2ea95ac484210d445b40e - - - - std::vector< Fitness > - vect_better_fit - classmo_rand_impr_select.html - 05c7c3b858e8a25632f2f5c86b0c97a3 - - - - std::vector< M > - vect_better_moves - classmo_rand_impr_select.html - 2ace12bd179144fa71d56324694201f5 - - - - - moRandMove - classmo_rand_move.html - M - eoUF< M &, void > - - - moSA - classmo_s_a.html - M - moAlgo< M::EOType > - - - moSA - classmo_s_a.html - 01f6a44483e5a7abbce33eb480b6a9b9 - (moRandMove< M > &__move_rand, moMoveIncrEval< M > &__incr_eval, moSolContinue< EOT > &__cont, double __init_temp, moCoolingSchedule &__cool_sched, eoEvalFunc< EOT > &__full_eval) - - - bool - operator() - classmo_s_a.html - 0e4c54b57bc13fcbd4763883b8f719e5 - (EOT &__sol) - - - M::EOType - EOT - classmo_s_a.html - d5d64a8797bdedc7b3af7893aded0bd5 - - - - EOT::Fitness - Fitness - classmo_s_a.html - 97f1a40d5ab5a0b3f878d0347b34804b - - - - moRandMove< M > & - move_rand - classmo_s_a.html - 71c49935b63a202d25888a5f86121fec - - - - moMoveIncrEval< M > & - incr_eval - classmo_s_a.html - 4c3be32e9832e465b24e6d33559356bc - - - - moSolContinue< EOT > & - cont - classmo_s_a.html - 54484c8a514866ea496e0058c2e09716 - - - - double - init_temp - classmo_s_a.html - f1af7636b52aa5f6b381f8187b667bd4 - - - - moCoolingSchedule & - cool_sched - classmo_s_a.html - 11c7d0cab649b7d680dd85bb74cb4ff6 - - - - eoEvalFunc< EOT > & - full_eval - classmo_s_a.html - bcd6a940046f23dd741444c0b85edf2c - - - - - moSimpleMoveTabuList - classmo_simple_move_tabu_list.html - M - moTabuList - - M::EOType - EOT - classmo_simple_move_tabu_list.html - 91286ff3ba6b1e9e1db9e4fdade2edb7 - - - - - moSimpleMoveTabuList - classmo_simple_move_tabu_list.html - 12798ce0bc3a2ee031fb301290ed6d79 - (unsigned int __size) - - - bool - operator() - classmo_simple_move_tabu_list.html - bb7fe9da28617f56734af71c42c8265a - (const M &__move, const EOT &__sol) - - - void - add - classmo_simple_move_tabu_list.html - 43c979a9ec876c5e5b591b1c422395ef - (const M &__move, const EOT &__sol) - - - void - update - classmo_simple_move_tabu_list.html - 96cffc8118456ed762b07b9fc0e0679f - () - - - void - init - classmo_simple_move_tabu_list.html - b91ae9971be30769757d1ad92c6009dc - () - - - void - removeMove - classmo_simple_move_tabu_list.html - a3fa2bd19e09f1541878fa28e867d20f - (const M &__move) - - - unsigned int - maxSize - classmo_simple_move_tabu_list.html - e48848e9e5c9c8435475cbdf21658e23 - - - - unsigned int - currentSize - classmo_simple_move_tabu_list.html - f1f9524e62d48f3688aa58a6055ccceb - - - - std::list< M > - tabuList - classmo_simple_move_tabu_list.html - d91bc838361524720616b44eda9b2c3a - - - - - moSimpleSolutionTabuList - classmo_simple_solution_tabu_list.html - M - moTabuList - - M::EOType - EOT - classmo_simple_solution_tabu_list.html - 881060871a6b49e5e8554c5df85176d9 - - - - - moSimpleSolutionTabuList - classmo_simple_solution_tabu_list.html - 8f8ce82b49ff49efbd934cedd3e34178 - (unsigned int __size) - - - bool - operator() - classmo_simple_solution_tabu_list.html - e1f1cf258b55554d8be88fb5780a0047 - (const M &__move, const EOT &__sol) - - - void - add - classmo_simple_solution_tabu_list.html - fd6b3a1764121169650c969bba895615 - (const M &__move, const EOT &__sol) - - - void - update - classmo_simple_solution_tabu_list.html - 91b8b01dba7ffea8b63765d931e56f56 - () - - - void - init - classmo_simple_solution_tabu_list.html - d5645c39fec71a6110a2cbccbb08b816 - () - - - void - removeSolution - classmo_simple_solution_tabu_list.html - 7847a48f33c15e31298f3e715d754560 - (const EOT &__sol) - - - unsigned int - maxSize - classmo_simple_solution_tabu_list.html - 662e1f65fadff234692be009a2440845 - - - - unsigned int - currentSize - classmo_simple_solution_tabu_list.html - 2aaf6e882d10495adddae94cb7a48fbf - - - - std::list< EOT > - tabuList - classmo_simple_solution_tabu_list.html - 75df9cd683528d3722d02bac407b710b - - - - - moSolContinue - classmo_sol_continue.html - EOT - eoUF< const EOT &, bool > - - virtual void - init - classmo_sol_continue.html - 064dc966a210f4ffb9515be3f03ca4c7 - ()=0 - - - - moTabuList - classmo_tabu_list.html - M - eoBF< const M &, const M::EOType &, bool > - - M::EOType - EOT - classmo_tabu_list.html - e219715cc3fdd5626764bc50ce6357df - - - - virtual void - add - classmo_tabu_list.html - d279d72cb486d812da1ad3d24a69c286 - (const M &__move, const EOT &__sol)=0 - - - virtual void - update - classmo_tabu_list.html - a2e5d1132f064093c8ed57046405f5ca - ()=0 - - - virtual void - init - classmo_tabu_list.html - 0a06c459d56e8e2b408a8f3c6aec4e57 - ()=0 - - - - moTS - classmo_t_s.html - M - moAlgo< M::EOType > - - - moTS - classmo_t_s.html - 2be23f4524733ee6f37b71310d76407e - (moMoveInit< M > &__move_init, moNextMove< M > &__next_move, moMoveIncrEval< M > &__incr_eval, moTabuList< M > &__tabu_list, moAspirCrit< M > &__aspir_crit, moSolContinue< EOT > &__cont, eoEvalFunc< EOT > &__full_eval) - - - - moTS - classmo_t_s.html - 508e675c4232cf2ca06dded931c90bab - (moMoveExpl< M > &__move_expl, moSolContinue< EOT > &__cont, eoEvalFunc< EOT > &__full_eval) - - - bool - operator() - classmo_t_s.html - 94d25a76fe1bc9ef0bbd0358ff55aceb - (EOT &__sol) - - - M::EOType - EOT - classmo_t_s.html - 90d19d468c12ab5bd796948ce1ce79b1 - - - - EOT::Fitness - Fitness - classmo_t_s.html - aa0eefbb17111422e495d1255f876fca - - - - moMoveExpl< M > & - move_expl - classmo_t_s.html - 06914ddc90ca96e9158c8dbe182a7865 - - - - moSolContinue< EOT > & - cont - classmo_t_s.html - 969371cd2202f3d29cbb426f57ac7d3a - - - - eoEvalFunc< EOT > & - full_eval - classmo_t_s.html - fb67eddae5d0bfca4ed881995523231e - - - - static bool - first_time - classmo_t_s.html - 564bc1969548ccbd9bb7e76f92898de0 - - - - static pthread_mutex_t - mutex - classmo_t_s.html - 688f9ba42eb33cae6431f4f4eb65b9e9 - - - - - moTSMoveLoopExpl - classmo_t_s_move_loop_expl.html - M - moMoveLoopExpl - - - moTSMoveLoopExpl - classmo_t_s_move_loop_expl.html - 43306dae9df150a8d9dc0dec9cd6a381 - (moMoveInit< M > &__move_init, moNextMove< M > &__next_move, moMoveIncrEval< M > &__incr_eval, moTabuList< M > &__tabu_list, moAspirCrit< M > &__aspir_crit) - - - void - operator() - classmo_t_s_move_loop_expl.html - f601bbd0ccc41d6fbe3df9fcd87ad9e7 - (const EOT &__old_sol, EOT &__new_sol) - - - M::EOType - EOT - classmo_t_s_move_loop_expl.html - 47f42225e2ed096374b818bdb848a527 - - - - M::EOType::Fitness - Fitness - classmo_t_s_move_loop_expl.html - a1ba36c937b195ca2f7d1a24adaa7018 - - - - moMoveInit< M > & - move_init - classmo_t_s_move_loop_expl.html - 6b23f99648902fb72ed17a4a6fa4e400 - - - - moNextMove< M > & - next_move - classmo_t_s_move_loop_expl.html - aeeff6666d26ff5c67acd9c153a5ae49 - - - - moMoveIncrEval< M > & - incr_eval - classmo_t_s_move_loop_expl.html - ee4443fc8e45d840697619678628c26c - - - - moBestImprSelect< M > - move_select - classmo_t_s_move_loop_expl.html - 35a3f3035fb8df875c281d9838904bf1 - - - - moTabuList< M > & - tabu_list - classmo_t_s_move_loop_expl.html - 0e5988a940ba218e87c53b7e56d79790 - - - - moAspirCrit< M > & - aspir_crit - classmo_t_s_move_loop_expl.html - 6786cf5422d17cbf872b07ae74ca6b0f - - - - diff --git a/trunk/paradiseo-mo/src/Makefile.am b/trunk/paradiseo-mo/src/Makefile.am deleted file mode 100755 index ae1e51b3c..000000000 --- a/trunk/paradiseo-mo/src/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -# Nothing to compile ! diff --git a/trunk/paradiseo-mo/tutorial/Makefile.am b/trunk/paradiseo-mo/tutorial/Makefile.am deleted file mode 100644 index d4b5c340c..000000000 --- a/trunk/paradiseo-mo/tutorial/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = examples Lesson1 Lesson2 Lesson3