From df7db103776801df2640c89654da7bd6fe66d3ea Mon Sep 17 00:00:00 2001 From: Eremey Valetov Date: Sat, 28 Feb 2026 19:20:18 -0500 Subject: [PATCH 1/7] Fix factual errors in README, INSTALL, and CONTRIBUTING MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix cmake typo: -BUILD_TESTING → -DBUILD_TESTING (CONTRIBUTING.md) - Remove dead GForge clone URL and mailing list links - Replace mailing list references with GitHub Issues - Drop outdated Ubuntu version and GCC version specifics (18.04/12.04, g++-8/gcc-4.7) — ParadisEO requires C++17, any modern compiler works - Fix doc-edo label: "for MO" → "for EDO" (INSTALL.md) - Fix doc path: build/paradise-mo/doc → build/mo/doc (INSTALL.md) - Fix website path: paradiseo/website/index.html → docs/index.html (README.md) - Update Git clone URL from dead INRIA GForge to GitHub (README.md) --- CONTRIBUTING.md | 11 +++++------ INSTALL.md | 26 ++++++++------------------ README.md | 10 +++++----- 3 files changed, 18 insertions(+), 29 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6eff1e82f..e13c2a31f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -19,9 +19,8 @@ Contribution Workflow The maintainer(s) will try to answer under a couple of weeks, if not, do not hesitate to send an e-mail. -If you're not familiar with Git and merge requests, start by cloning one of the main repository: +If you're not familiar with Git and merge requests, start by cloning the main repository: - `git clone https://github.com/nojhan/paradiseo.git` -- `git clone https://scm.gforge.inria.fr/anonscm/git/paradiseo/paradiseo.git` Git workflow @@ -38,7 +37,7 @@ git checkout -b # Always work on a dedicated branch. git commit mkdir build cd build -cmake -DCMAKE_BUILD_TYPE=Debug -BUILD_TESTING=ON -DENABLE_CMAKE_TESTING=ON .. && make && ctest # Always test. +cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -DENABLE_CMAKE_TESTING=ON .. && make && ctest # Always test. cd .. git pull origin master # Always check that your modification still merges. ``` @@ -46,7 +45,7 @@ git pull origin master # Always check that your modification still merges. If everything went without error, you can either send the patch or submit a merge request. To do so, you can either: - submit a "pull request" on Github: [nojhan/paradiseo](https://github.com/nojhan/paradiseo), -- or send a patch on the [ParadisEO mailing list](https://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/paradiseo-users). +- or [open an issue](https://github.com/nojhan/paradiseo/issues) to discuss your proposed changes. See below for the details. @@ -79,6 +78,6 @@ git pull origin master git diff master > my_feature.patch ``` -Then send the `my_feature.patch` (along with your explanations about why the maintainer should merge your modifications) -to the [mailing list](https://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/paradiseo-users). +Then [open an issue](https://github.com/nojhan/paradiseo/issues) with `my_feature.patch` attached +(along with your explanations about why the maintainer should merge your modifications). diff --git a/INSTALL.md b/INSTALL.md index a3fb4e1b7..1064ecf09 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -9,9 +9,9 @@ Just put it somewhere on your development computer, compile it from here and ind Build ----- -Paradiseo is mainly developed for Linux, on which it is straightforward to install a C++ build chain. For example, on Ubuntu 18.04: +Paradiseo is mainly developed for Linux, on which it is straightforward to install a C++ build chain. For example, on Ubuntu: ```bash -sudo apt install g++-8 cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev +sudo apt install g++ cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev ``` Paradiseo use the CMake build system, so building it should be as simple as: @@ -67,7 +67,7 @@ Feel free to test with another compiler and to send us your report. As of today, we cannot guarantee that it will be easy to install ParadisEO under Windows if you're a beginner. -There is still some (possibly outdated) help about oldest version on the [Website](http://paradiseo.gforge.inria.fr/). +There is still some (possibly outdated) help about oldest version on the [Website](https://nojhan.github.io/paradiseo/). If you know how to install a working compiler and the dependencies, you may follow the same steps than the Linux process below. @@ -89,9 +89,9 @@ Some features are only available if some dependencies are installed: - Doxygen is needed to build the API documentation, and you should also install graphviz if you want the class relationship diagrams. - GNUplot is needed to have the… GNUplot graphs at checkpoints. -To install all those dependencies at once under Ubuntu (18.04), just type: +To install all those dependencies at once under Ubuntu, just type: ```bash -sudo apt install g++-8 cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev. +sudo apt install g++ cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev ``` @@ -144,20 +144,10 @@ this can be helpful if you don't need other modules with more complex dependenci Shared Memory Processing (SMP) module ------------------------------------- -The SMP module requires gcc 4.7 or higher. This is due to the fact that it uses the new C++ standard. - -At the moment, the SMP module does not work on Windows or Mac OS X since MinGW does not provide support for std::thread and Apple does not supply a recent version of gcc (but you can try to compile gcc 4.7 by yourself). +ParadisEO requires C++17, so any modern compiler (GCC, Clang) should work. To enable the compilation of the SMP module, just set the `SMP` option. -Depending on your distribution, you might have to give to CMake the path of gcc and g++ 4.7. -This is the case for Ubuntu 12.04 LTS for instance. - -If you are in that case and assuming you have a standard path for gcc et g++ 4.7: -```bash -cmake .. -DSMP=true -DCMAKE_C_COMPILER=/usr/bin/gcc-4.7 -DCMAKE_CXX_COMPILER=/usr/bin/g++-4.7 -``` - Estimating Distribution Objects (EDO) module -------------------------------------------- @@ -178,12 +168,12 @@ Targets for the build system (usually `make`) are: - `doc` for all documentations, - `doc-eo` for building EO documentation, - `doc-mo` for MO, -- `doc-edo` for MO, +- `doc-edo` for EDO, - `doc-moeo` for MOEO, - `doc-smp` for SMP. Each documentation are generated separatly in the module build folder. -For instance, after the generation of the MO documentation, you will find it in `build/paradise-mo/doc`. +For instance, after the generation of the MO documentation, you will find it in `build/mo/doc`. Examples -------- diff --git a/README.md b/README.md index 78f5c96fe..328a4a78f 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ It focus on the efficiency of the implementation of solvers, by providing: # Very Quick Start -1. Use a recent Linux, like an Ubuntu. -2. `sudo apt install g++-8 cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev` +1. Use a recent Linux, like Ubuntu. +2. `sudo apt install g++ cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev` 3. From the Paradiseo directory: `mkdir build ; cd build ; cmake -D CMAKE_BUILD_TYPE=Release -DEDO=ON .. && make -j` 4. Copy-paste this CMA-ES code in `cmaes.cpp`: ```cpp @@ -173,7 +173,7 @@ Stable versions should however work on Windows and any Unix-like operating syste # Code -The latest stable version is on the official Git repository of INRIA: `git clone git://scm.gforge.inria.fr/paradiseo/paradiseo.git` +The latest version is on the official Git repository: `git clone https://github.com/nojhan/paradiseo.git` ## Dependencies @@ -187,7 +187,7 @@ Some features are only available if some dependencies are installed: - Doxygen is needed to build the API documentation, and you should also install graphviz if you want the class relationship diagrams. - GNUplot is needed to have the… GNUplot graphs at checkpoints. -To install all those dependencies at once under Ubuntu (18.04), just type: `sudo apt install g++-8 cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev`. +To install all those dependencies at once under Ubuntu, just type: `sudo apt install g++ cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev`. ## Compilation @@ -237,7 +237,7 @@ benchmark libraries are in `paradiseo/problems`. For academic articles, books, more tutorials, presentations slides, real life example of solvers and contact information, -please see the web site (available in `paradiseo/website/index.html`). +please see the web site (available in `docs/index.html`). # Citing Paradiseo From cc47edc66d75a9e61bdc8f05e8385f1defaadf07 Mon Sep 17 00:00:00 2001 From: Eremey Valetov Date: Sat, 28 Feb 2026 19:22:14 -0500 Subject: [PATCH 2/7] Fix broken links in docs/index.html Replace ~50 dead URLs pointing to gforge.inria.fr, eodev.sourceforge.net, and defunct personal pages. Tutorial links now point to in-repo content on GitHub. Presentation PDFs use Wayback Machine URLs or local paths where the files exist in the repository. Contact info updated from dead mailing lists to GitHub Issues. --- docs/index.html | 147 +++++++++++++++++++++--------------------------- 1 file changed, 63 insertions(+), 84 deletions(-) diff --git a/docs/index.html b/docs/index.html index 33c2eaae6..501d1143d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -136,7 +136,7 @@

As is a development framework, you do not really need to install it on all your systems. Just put it somewhere on your development computer, compile it from here and indicate where to find it to your favorite build system.

is mainly developed for Linux, on which it is straightforward to install a C++ build chain. - For example, on Ubuntu 18.04: sudo apt install g++-8 cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev

+ For example, on Ubuntu: sudo apt install g++ cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev

use the CMake build system, so building it should be as simple as: mkdir build ; cd build ; cmake -DEDO=ON .. && make -j

@@ -234,12 +234,13 @@

Get help

-

If you need immediate support or have any question, the best way to get - answers is to send an email to paradiseo-help@lists.gforge.inria.fr. You can also consult the help archives, subscribe to our (low traffic) mailing-list or consult its archives. +

If you need immediate support or have any question, you can: +

-

Alternatively, you can join us on the official chatroom. You can try the online webchat app, or if you already use Element.io, you can directly connect to the #paradiseo:matrix.org multi-user chatroom with your favorite client.

-
@@ -531,7 +532,7 @@

Recent versions of uses the CMake portable build system, that permits to easily generate a build script for your environment.

-

If you have tested on a system not listed here, please let +

If you have tested on a system not listed here, please let us know.

@@ -861,7 +862,7 @@
  • The core EO module is described in the following scientific article:

    M. Keijzer, J.J. Merelo, G. Romero, G., M. Schoenauer, - Evolving + Evolving objects: A general purpose evolutionary computation library, Artificial Evolution, 2310, 829--888 (2002).

    @@ -875,7 +876,7 @@
  • The multi-objective module (MOEO) is described in: -

    A. Liefooghe, M. Basseur, L. Jourdan, E.-G. Talbi, -MOEO: A Framework for Evolutionary Multi-objective Optimization, EMO 2007, LNCS Vol. 4403, pp. 386-400, Matsushima, Japan.
    +
    A. Liefooghe, M. Basseur, L. Jourdan, E.-G. Talbi, -MOEO: A Framework for Evolutionary Multi-objective Optimization, EMO 2007, LNCS Vol. 4403, pp. 386-400, Matsushima, Japan.

  • @@ -887,7 +888,7 @@
  • A book about metaheuristics use as its framework of choice and explains in details several of its concepts, along with algorithmics content: -

    El-Ghazali Talbi, Metaheuristics: from design to implementation, Wiley, 2009. +
    El-Ghazali Talbi, Metaheuristics: from design to implementation, Wiley, 2009. (624pp), ISBN: 978-0-470-27858-1

    @@ -1026,24 +1027,24 @@ undiscovered knowledge.

    Paradiseo-EO

      -
    • A functional and "philosophical" overview of the EO module was presented at EA'01 conference. - You can download the paper - or the - slides.
    • -
    • Metaheuristics for Combinatorial Optimization [pdf] by E-G. Talbi and S.Cahon: provides general concept on metaheuristics for combinatorial optimization. -
    • Reusable Design of Metaheuristics [pdf] by S.Cahon, E-G. Talbi and N. Melab: explains how to use Paradiseo-EO with a simple example. +
    • A functional and "philosophical" overview of the EO module was presented at EA'01 conference. + You can download the paper + or the + slides (also available locally in eo/doc/).
    • +
    • Metaheuristics for Combinatorial Optimization [pdf] by E-G. Talbi and S.Cahon: provides general concept on metaheuristics for combinatorial optimization. [No longer available online] +
    • Reusable Design of Metaheuristics [pdf] by S.Cahon, E-G. Talbi and N. Melab: explains how to use Paradiseo-EO with a simple example. [No longer available online]

    Paradiseo-MO

    -
    • Reusable Design of Local Searches and Tools for Landscape Analysis [pdf] by S.Verel, A.Liefooghe and J.Humeau: explains the new design of Paradiseo-MO. +

      Paradiseo-MOEO

      -
      • Metaheuristics for Multi-objective Optimization [pdf] by E.-G. Talbi and the group: presents multi-objective optimization concepts, a taxonomy of resolution methods and gives performance evaluation examples. -
      • Reusable Design of Metaheuristics for Multi-objective Optimization [pdf] by E.-G. Talbi and the group: explains how to implement metaheuristics for multi-objective optimization using Paradiseo-MOEO through a simple example. +
        • Metaheuristics for Multi-objective Optimization [pdf] by E.-G. Talbi and the group: presents multi-objective optimization concepts, a taxonomy of resolution methods and gives performance evaluation examples. [No longer available online] +
        • Reusable Design of Metaheuristics for Multi-objective Optimization [pdf] by E.-G. Talbi and the group: explains how to implement metaheuristics for multi-objective optimization using Paradiseo-MOEO through a simple example. [No longer available online]
        @@ -1068,30 +1069,32 @@ undiscovered knowledge.

        Tutorials on EO (evolutionary algorithms module)

        -
        • EO Lesson1-5 Implement a GA -
        • EO Lesson6 first part Implement a real PSO algorithm -
        • EO Lesson6 second part Implement a binary PSO algorithm +
          • EO Lessons 1–5 Implement a GA (also available locally in eo/tutorial/html/) +
          • EO Lesson 6 Implement real and binary PSO algorithms (see RealPSO.cpp and BinaryPSO.cpp)

          Tutorials on MO (local search module)

          -

          • MO Lesson1 Hill Climber -
          • MO Lesson2 Neighborhoods (classical and indexed) -
          • MO Lesson3 Simulated Annealing and Checkpointing -
          • MO Lesson4 Tabu Search -
          • MO Lesson5 Iterated Local Search -
          • MO Lesson6 Fitness Landscapes Analysis -
          • MO Lesson7 Hybrid Lesson +

            Tutorials on MOEO (multi-objective module)

            -

            • MOEO Lesson1 Implement NSGA, NSGA-II and IBEA for the SCH1 problem -
            • MOEO Lesson2 Evolutionary Algorithms for the flow-shop scheduling problem -
            • MOEO Lesson3 Evolutionary Algorithms with a user-friendly parameter file -
            • MOEO Lesson4 Dominance-based Local Search for the flow-shop scheduling problem -

            Tutorials SMP: new -

            • SMP Lesson1 Algorithm wrapping with Master / Workers model +

              • MOEO Lesson 1 Implement NSGA, NSGA-II and IBEA for the SCH1 problem +
              • MOEO Lesson 2 Evolutionary Algorithms for the flow-shop scheduling problem +
              • MOEO Lesson 3 Evolutionary Algorithms with a user-friendly parameter file +
              • MOEO Lesson 4 Dominance-based Local Search for the flow-shop scheduling problem +

              Tutorials SMP: +

              Tutorials on parallelization

              @@ -1104,12 +1107,8 @@ undiscovered knowledge. 2. components and basics, 3. advanced island model manipulations.
            • -
            • PEO Intro Technical introduction
            • - -
            • PEO Lesson2 Multistart over an evolutionary algorithm
            • -
            • PEO Lesson3 Parallel evaluation
            • - -
            • PEO Lesson5 Island model
            • + @@ -1124,9 +1123,9 @@ undiscovered knowledge.

              Utilities

              -

              + +
              @@ -1134,16 +1133,7 @@ undiscovered knowledge.

              The heart of is a set of classes implementing operators. Each module has a separate API documentation. If you want to browse the features and find which class to use, this is the right entry point

              -

              For your convenience, you can browse an online API doc for version 2.0: -

              -

              - -

              Note that if you want to find the API documentation for the version you have at hand, just build the make doc target and open paradiseo/<build>/<module>/doc/html/index.html in your web browser.

              +

              The previously hosted online API docs (v2.0) are no longer available. To generate the API documentation for your version, build the make doc target and open paradiseo/<build>/<module>/doc/html/index.html in your web browser. Per-module targets are also available: make doc-eo, make doc-mo, make doc-moeo, make doc-smp, make doc-edo.

              @@ -1151,9 +1141,8 @@ undiscovered knowledge.

              If you want to see examples of real solvers:

                -
              • The examples page on INRIA pages (with explanations).
              • -
              • The contributed code on the project page.
              • -
              • The Descarwin project hold the "DaE" planning solver, +
              • The problems directory in the repository contains benchmark problem implementations (DTLZ, NK landscapes, QAP, etc.).
              • +
              • The Descarwin project holds the "DaE" planning solver, which is implemented with and won the International Planning Competition.

              @@ -1172,7 +1161,7 @@ undiscovered knowledge.

              The current stable release is version: Paradiseo 3.1.3. Some other releases (older or newer) can be found on GitHub/paradiseo/releases.

              You can obtain the latest stable and beta version directly via the Git repository: - git clone https://github.com/jdreo/paradiseo.git. + git clone https://github.com/nojhan/paradiseo.git. The release are on the "master" branch.

              @@ -1205,7 +1194,7 @@ undiscovered knowledge.

            -

            To install all those dependencies at once under Ubuntu (18.04), just type: sudo apt install g++-8 cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev.

            +

            To install all those dependencies at once under Ubuntu, just type: sudo apt install g++ cmake make libeigen3-dev libopenmpi-dev doxygen graphviz libgnuplot-iostream-dev.

            @@ -1253,7 +1242,7 @@ undiscovered knowledge.

            development is open and contributions are welcomed.

            The official bug tracker is available on the project page.

            -

            If you have any question about contributing: subscribe to our (low traffic) mailing-list.

            +

            If you have any question about contributing, open an issue or join the Matrix chatroom.

            @@ -1289,35 +1278,26 @@ undiscovered knowledge.

            Authors

            -

            The EO module was started in 1999 by the Geneura - Team at the University of Granada, headed by Juan Julián Merelo. The original Web site is also the only place where you - will find old releases of (up to 0.8.7), but beware that it is not - compatible at all with the current version.

            +

            The EO module was started in 1999 by the Geneura + Team at the University of Granada, headed by + Juan Julián Merelo.

            -

            You can read this - PowerPoint presentation, that shows the EO philosophy back then. - It includes a Visual Basic (!) macro for evolving objects in Visual Basic - for Applications.

            - -

            The developement team has then been reinforced by Maarten Keijzer, the C++ +

            The developement team has then been reinforced by + Maarten Keijzer (the C++ wizard who designed the current neat architecture), - and Marc Schoenauer + and Marc Schoenauer (who became a prominent researcher in the evolutionary algorithm community). - Later came Jeroen Eggermont, + Later came Jeroen Eggermont, who, among other things, did a lot of work on GP, INRIA Dolphin Team, Olivier König, who did a lot of useful additions and cleaning of the code - and Jochen Küpper, working on + and Jochen Küpper, working on infrastructure maintenance.

            -

            El-Ghazali Talbi's +

            El-Ghazali Talbi's INRIA team did a lot of contributions starting from around 2003, on their own module collection called . - Thomas Legrand, Sébastien Cahon and Nouredine Melab + Thomas Legrand, Sébastien Cahon and Nouredine Melab worked on parallelization modules. Arnaud Liefooghe worked a lot on the multi-objective module and @@ -1326,7 +1306,7 @@ undiscovered knowledge. In the same team, C. C. and J. Boisson made significant contributions. Karima Boufaras specifically worked on (now deprecated) GPU tools.

            -

            The (then) EO project was then taken over by Johann Dreo, +

            The (then) EO project was then taken over by Johann Dreo, who worked with the help of Caner Candan on adding the EDO module. Johann and Benjamin Bouvier have also designed a MPI parallelization module. Alexandre Quemy @@ -1346,14 +1326,13 @@ undiscovered knowledge.

            Some softwares listed here are using , but they are not maintained by the team. They may not be free softwares.

              -
            • DegaX - is an ActiveX control which embeds 0.8.4. +
            • DegaX was an ActiveX control which embedded 0.8.4.
            • -
            • EASEA was a GUI that permits to build evolutionary algorithm with or the GAlib. - It is now a platform that allows program evolutionary algorithms on massively parallel many-core architectures.
            • +
            • EASEA was a GUI that permits to build evolutionary algorithm with or GAlib. + It became a platform that allows programming evolutionary algorithms on massively parallel many-core architectures.
            • -
            • GUIDE is a GUI that allows the generation of evolutionary algorithms. It can use or ECJ.
            • +
            • GUIDE was a GUI that allows the generation of evolutionary algorithms. It could use or ECJ.

            From 02c84001d4ff2cb93acd8dc5d450fd4e3dfc1b9b Mon Sep 17 00:00:00 2001 From: Eremey Valetov Date: Sat, 28 Feb 2026 19:22:20 -0500 Subject: [PATCH 3/7] Fix broken links in Doxygen mainpage files Update dead gforge.inria.fr and eodev.sourceforge.net URLs in the module-level Doxygen index pages (eo, mo, moeo, smp, DTLZ). Replace with GitHub URLs and current contact information. --- eo/doc/index.h | 6 +++--- mo/doc/index.h | 13 +++++++------ moeo/doc/index.h | 13 +++++++------ problems/DTLZ/doc/index.h | 12 ++++++------ smp/doc/index.h | 11 ++++++----- 5 files changed, 29 insertions(+), 26 deletions(-) diff --git a/eo/doc/index.h b/eo/doc/index.h index 52a5758cf..da7d95678 100644 --- a/eo/doc/index.h +++ b/eo/doc/index.h @@ -56,7 +56,7 @@ Thus, you can easily build your own algorithm by trying several combination of o For a more detailled introduction to the design of %EO you can look at the slides from a talk at EA 2001 or at the corresponding article in Lecture Notes In Computer Science, 2310, Selected Papers from the 5th European Conference on Artificial Evolution: - - http://portal.acm.org/citation.cfm?id=727742 - - http://eodev.sourceforge.net/eo/doc/LeCreusot.pdf - - http://eodev.sourceforge.net/eo/doc/EO_EA2001.pdf + - https://doi.org/10.1007/3-540-46033-0_13 + - LeCreusot.pdf (available in eo/doc/) + - EO_EA2001.pdf (available in eo/doc/) */ diff --git a/mo/doc/index.h b/mo/doc/index.h index da6778372..077a5d346 100644 --- a/mo/doc/index.h +++ b/mo/doc/index.h @@ -6,12 +6,13 @@ ParadisEO-MO is a white-box object-oriented generic framework dedicated to the f @section tutorials Tutorials -Tutorials for ParadisEO-MO are available in the "Tutorials section" of the ParadisEO website. +Tutorials for ParadisEO-MO are available in the mo/tutorial/ directory. See also the +ParadisEO website. @section Design For an introduction to the design of ParadisEO-MO, -you can look at the ParadisEO website. +you can look at the ParadisEO website. @section LICENSE @@ -39,14 +40,14 @@ you can look at the ParadisEO website The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ /** @page webpages Related webpages -- ParadisEO homepage -- INRIA GForge project page +- ParadisEO homepage +- GitHub project page - README */ diff --git a/moeo/doc/index.h b/moeo/doc/index.h index 4aa7971db..1576f8193 100644 --- a/moeo/doc/index.h +++ b/moeo/doc/index.h @@ -16,7 +16,8 @@ using the whole version of ParadisEO. @section tutorials Tutorials -Tutorials for ParadisEO-MOEO are available in the "Tutorials section" of the ParadisEO website. +Tutorials for ParadisEO-MOEO are available in the moeo/tutorial/ directory. See also the +ParadisEO website. @@ -29,7 +30,7 @@ The installation procedure of the package is detailed in the README file in the @section Design For an introduction to the design of ParadisEO-MOEO, -you can look at the ParadisEO website. +you can look at the ParadisEO website. @section LICENSE @@ -58,14 +59,14 @@ you can look at the ParadisEO website The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ /** @page webpages Related webpages -- ParadisEO homepage -- INRIA GForge project page +- ParadisEO homepage +- GitHub project page - README */ diff --git a/problems/DTLZ/doc/index.h b/problems/DTLZ/doc/index.h index 30d2abb71..d46bbc228 100644 --- a/problems/DTLZ/doc/index.h +++ b/problems/DTLZ/doc/index.h @@ -15,7 +15,7 @@ The installation procedure of the package is detailed in the "README.txt" file l @section Design For an introduction to the design of ParadisEO, -you can look at the ParadisEO website. +you can look at the ParadisEO website. @section LICENSE @@ -44,14 +44,14 @@ you can look at the ParadisEO website The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ /** @page webpages Related webpages -- ParadisEO homepage -- INRIA GForge project page -- Fore any questions, please contact paradiseo-help@lists.gforge.inria.fr +- ParadisEO homepage +- GitHub project page +- For any questions, please use the GitHub issue tracker */ diff --git a/smp/doc/index.h b/smp/doc/index.h index fde65787a..5fd077010 100644 --- a/smp/doc/index.h +++ b/smp/doc/index.h @@ -8,7 +8,8 @@ Different parallelism models are available such as the Master / Slaves Model or @section tutorials Tutorials -Tutorials for ParadisEO-SMP are available in the "Tutorials section" of the ParadisEO website. +Tutorials for ParadisEO-SMP are available in the smp/tutorial/ directory. See also the +ParadisEO website. @section LICENSE @@ -36,14 +37,14 @@ Tutorials for ParadisEO-SMP are available in the "Tutorials section" of the homepage -- INRIA GForge project page +- ParadisEO homepage +- GitHub project page - README */ From 27f29fe5922a6704f88174f6f28c285dc44fa09b Mon Sep 17 00:00:00 2001 From: Eremey Valetov Date: Sat, 28 Feb 2026 19:22:26 -0500 Subject: [PATCH 4/7] Fix broken links in EO tutorial and documentation HTML Replace dead external links in eoTutorial.html (sgi.com STL reference, bionik.tu-berlin.de CMA-ES page), mainpage.html (eodev.sourceforge.net), and publications.html (eodev.sourceforge.net download links). Point to cppreference.com, cma-es.github.io, and GitHub equivalents. --- eo/doc/mainpage.html | 141 +++++++++---------------------- eo/doc/publications.html | 2 +- eo/tutorial/html/eoTutorial.html | 19 ++--- 3 files changed, 49 insertions(+), 113 deletions(-) diff --git a/eo/doc/mainpage.html b/eo/doc/mainpage.html index e175850c6..9b26541bc 100644 --- a/eo/doc/mainpage.html +++ b/eo/doc/mainpage.html @@ -35,23 +35,18 @@ background: #00309c; in it, it is very easy to subclass existing abstract or concrete classes.

            -

            EO was started by the Geneura - Team at the University of Granada, headed by Juan Julián Merelo. The original Web site is also the only place where you - will find old releases of EO (up to 0.8.7), but beware that it is not - compatible at all with the current version.

            +

            EO was started by the Geneura + Team at the University of Granada, headed by + Juan Julián Merelo.

            -

            The developement team has then been reinforced by Maarten Keijzer, the C++ - wizzard, and Marc Schoenauer. - Later came Jeroen - Eggermont, who, among other things, did a lot of work on GP, - INRIA Dolphin Team, Olivier König, who did a +

            The developement team has then been reinforced by + Maarten Keijzer (the C++ + wizard), and Marc Schoenauer. + Later came Jeroen + Eggermont, who, among other things, did a lot of work on GP, + INRIA Dolphin Team, Olivier König, who did a lot of useful additions and cleaning of the code and Jochen Küpper, working on + href="https://www.jochen-kuepper.de">Jochen Küpper, working on infrastructure maintenance.

            @@ -81,7 +76,7 @@ background: #00309c;

          If you have tested EO on a system not listed here, please let + href="https://github.com/nojhan/paradiseo/issues">let us know.

          If you are working on a system with an older C++ compiler there @@ -98,26 +93,11 @@ background: #00309c;

          The tutorial demonstrates that writing an evolutionary algorithm evolving your own structures is now easy, using ready-to-use - template files. Although the tutorial has not been upgraded for some - time now and refers to version 0.9.2 of EO, it nevertheless remains the - best way to dive into EO. You can start by trying it on-line at LRI - or SourceForge, - before downloading it. The - tutorial is also included in the released - sources.

          + template files. The tutorial is included in the source tree at + eo/tutorial/.

          -

          The latest tutorial - release -

          - -

          The complete code is also well documented and you can look at the - generated interface - documentation.

          +

          The complete code is also well documented and you can generate the + API documentation locally with make doc-eo.

          The easiest way to create a complete new EO-project, even for new genomes, is to use the script provided in tutorial/Templates/; see @@ -132,17 +112,9 @@ background: #00309c; -

          A functional and "philosophical" overview of EO was presented at EA'01 conference. - You can download the paper - or the - slides.

          - -

          A PowerPoint presentation shows the EO philosophy, and - it includes a Visual Basic macro for evolving objects in Visual Basic - for Applications.

          +

          A functional and "philosophical" overview of EO was presented at EA'01 conference. + You can find the paper (EO_EA2001.pdf) + and the slides (LeCreusot.pdf) in the eo/doc/ directory.

          You can also look a the list of publications that used EO to solve real problems.

          @@ -155,18 +127,14 @@ background: #00309c; -

          The current release is EO 1.0. - It supports any Standard-compliant C++ compiler.

          - -

          You can obtain the latest version directly via cvs or download a - daily snapshot from LRI.

          - -

          All releases can be obtained from the SourceForge download - area.

          +

          EO is now part of ParadisEO. + You can obtain the latest version via Git: + git clone https://github.com/nojhan/paradiseo.git

          + +

          Releases can be obtained from the GitHub releases + page.

          @@ -176,11 +144,9 @@ background: #00309c; - We would like EO to be an open development effort; that is why we have - created mailing lists to discuss future developments, solve technical - problems, announce releases, publish patches, and discuss evolutionary - computation in general. Browse the archives or join the EO mailing lists. + For questions, bug reports, or contributions, please use the + GitHub issue tracker + or the Matrix chatroom. @@ -190,23 +156,11 @@ background: #00309c; -

          The following resources are available, thanks to sourceforge

          +

          EO is now developed as part of ParadisEO on GitHub:

          @@ -226,16 +180,11 @@ background: #00309c; -

          ParadisEO provides EO extensions for +

          ParadisEO provides EO extensions for the flexible design of single solution-based metaheuristics, metaheuristics for multi objective optimization as well as hybrid, parallel and distributed metaheuristics.

          -

          DegaX is an ActiveX control which embeds EO 0.8.4. -

          - @@ -245,30 +194,20 @@ background: #00309c; -

          Hosted by:
          SF logo

          - -

          Valid HTML 4.01 Transitional
          Please send comments on this webpage to the EO mailing -list.

          +

          Please report issues on the GitHub issue tracker.

          diff --git a/eo/doc/publications.html b/eo/doc/publications.html index 26ff646f4..a452ebf7b 100644 --- a/eo/doc/publications.html +++ b/eo/doc/publications.html @@ -50,7 +50,7 @@

          Hosted by:
          SF logo + src="sflogo-hammer1.jpg">

          diff --git a/eo/tutorial/html/eoTutorial.html b/eo/tutorial/html/eoTutorial.html index 1dbef8bd2..1d9347744 100644 --- a/eo/tutorial/html/eoTutorial.html +++ b/eo/tutorial/html/eoTutorial.html @@ -31,8 +31,7 @@ but go to the test directory, type make t-eoCMAES and use the resulting t-eoCMAES. But as of today, the latest algorithms (and comparative results) -are better found on Nikolaus Hansen Web page -and on his "Comparison of Evolutionary Algorithms on a Benchmark Function Set" page).
          +are better found on the CMA-ES project page.


          @@ -92,8 +91,8 @@ html-ized code are not yet updated - time is missing

          May 2002
        • -Thanks to Sébastien -Cahon (LIFL, Lille)
          +Thanks to Sébastien +Cahon (LIFL, Lille)

        @@ -142,14 +141,12 @@ and to quickly reach some specific part of the code.
      • diagram of the class, and you'll learn a lot by simply looking at it.
      • For those who wish to get deeper in STL (Standard Template Library), you -might visit the well documented SGI -STL Web site. But don't forget you'll find the very basic minimum in +might visit cppreference.com. But don't forget you'll find the very basic minimum in EO programming hints.
      • -And, last but not least, we assume you know approximately that an Evolutionary -Algorithm looks like this, but otherwise you can try this very -brief introduction (not written yet, Jan. 2001, sorry).
      • +And, last but not least, we assume you know approximately what an Evolutionary +Algorithm looks like.


      @@ -233,8 +230,8 @@ rather than when you have something urgent to code :-)


    • Before you start -

      You should of course have downloaded and installed the whole EO -library (how did you get this file if not???). +

      You should of course have downloaded and installed the whole ParadisEO +framework (how did you get this file if not???). If you are using a recent version of EO (0.9.3+), all tutorial Lessons should have been compiled when installing the library, and you can now proceed with Lesson1.
      From 54a44a177f77c2b96bd258072edafedfa911955e Mon Sep 17 00:00:00 2001 From: Eremey Valetov Date: Sat, 28 Feb 2026 19:23:51 -0500 Subject: [PATCH 5/7] Update dead URLs in license headers and build config Replace http://paradiseo.gforge.inria.fr with https://nojhan.github.io/paradiseo/ and paradiseo-help@lists.gforge.inria.fr with https://github.com/nojhan/paradiseo/issues across all source files, doxyfile templates, cmake packaging, and eo documentation. Also updates eodev.sourceforge.net references in EO headers. Applied to .h, .cpp, .cmake, and miscellaneous files in eo/, mo/, moeo/, smp/, and problems/. --- ForRelease | 2 +- cmake/Package.cmake | 2 +- eo/README | 4 ++-- eo/src/eoDualFitness.h | 2 +- eo/src/eoEvalCmd.h | 2 +- eo/src/eoEvalCounterThrowException.h | 2 +- eo/src/eoEvalNamedPipe.h | 2 +- eo/src/eoEvalNanThrowException.h | 2 +- eo/src/eoEvalTimeThrowException.h | 2 +- eo/src/eoEvalUserTimeThrowException.h | 2 +- eo/src/eoExceptions.h | 2 +- eo/src/eoInvertedContinue.h | 4 ++-- eo/src/eoPartiallyMappedXover.h | 4 ++-- eo/src/es/eoEsChromInit.h | 2 +- eo/src/es/eoEsSimple.h | 2 +- eo/src/es/eoEsStdev.h | 2 +- eo/src/es/make_genotype_es.cpp | 2 +- eo/src/es/make_genotype_real.h | 2 +- eo/src/es/make_op_es.h | 2 +- eo/src/mpi/eoMpi.cpp | 2 +- eo/src/mpi/eoMpi.h | 2 +- eo/src/mpi/eoMpiAssignmentAlgorithm.cpp | 2 +- eo/src/mpi/eoMpiAssignmentAlgorithm.h | 2 +- eo/src/mpi/eoMpiNode.cpp | 2 +- eo/src/mpi/eoMpiNode.h | 2 +- eo/src/mpi/eoParallelApply.h | 2 +- eo/src/mpi/eoTerminateJob.h | 2 +- eo/src/mpi/implMpi.cpp | 2 +- eo/src/mpi/implMpi.h | 2 +- eo/src/serial/Entity.h | 2 +- eo/src/serial/Parser.cpp | 2 +- eo/src/serial/Parser.h | 2 +- eo/src/serial/SerialArray.cpp | 2 +- eo/src/serial/SerialArray.h | 2 +- eo/src/serial/SerialObject.cpp | 2 +- eo/src/serial/SerialObject.h | 2 +- eo/src/serial/SerialString.cpp | 2 +- eo/src/serial/SerialString.h | 2 +- eo/src/serial/Serializable.h | 2 +- eo/src/serial/Traits.h | 2 +- eo/src/serial/Utils.h | 2 +- eo/src/serial/eoSerial.h | 2 +- eo/src/utils/eoFeasibleRatioStat.h | 2 +- eo/src/utils/eoHowMany.h | 2 +- eo/src/utils/eoLogMessage.h | 2 +- eo/src/utils/eoLogMonitor.h | 2 +- eo/src/utils/eoLogger.cpp | 2 +- eo/src/utils/eoLogger.h | 2 +- eo/src/utils/eoOStreamMonitor.h | 2 +- eo/src/utils/eoParallel.cpp | 2 +- eo/src/utils/eoParallel.h | 2 +- eo/src/utils/eoParser.cpp | 2 +- eo/src/utils/eoParser.h | 2 +- eo/src/utils/eoSignal.cpp | 2 +- eo/src/utils/eoSignal.h | 2 +- eo/src/utils/eoStat.h | 2 +- eo/src/utils/eoStdoutMonitor.h | 2 +- eo/src/utils/eoTimer.h | 2 +- eo/test/mpi/t-mpi-eval.cpp | 2 +- eo/test/mpi/t-mpi-multipleRoles.cpp | 2 +- eo/test/mpi/t-mpi-parallelApply.cpp | 2 +- eo/test/mpi/t-mpi-wrapper.cpp | 2 +- eo/test/t-openmp.cpp | 2 +- eo/test/t-openmp.py | 2 +- mo/doc/mo.doxyfile.cmake | 2 +- mo/src/acceptCrit/moAcceptanceCriterion.h | 4 ++-- mo/src/acceptCrit/moAlwaysAcceptCrit.h | 4 ++-- mo/src/acceptCrit/moBetterAcceptCrit.h | 4 ++-- mo/src/algo/eoDummyMonOp.h | 4 ++-- mo/src/algo/moDummyLS.h | 4 ++-- mo/src/algo/moFirstImprHC.h | 4 ++-- mo/src/algo/moILS.h | 4 ++-- mo/src/algo/moLocalSearch.h | 4 ++-- mo/src/algo/moMetropolisHasting.h | 4 ++-- mo/src/algo/moNeutralHC.h | 4 ++-- mo/src/algo/moRandomBestHC.h | 4 ++-- mo/src/algo/moRandomNeutralWalk.h | 4 ++-- mo/src/algo/moRandomSearch.h | 4 ++-- mo/src/algo/moRandomWalk.h | 4 ++-- mo/src/algo/moSA.h | 4 ++-- mo/src/algo/moSimpleHC.h | 4 ++-- mo/src/algo/moTS.h | 4 ++-- mo/src/algo/moVNS.h | 4 ++-- mo/src/comparator/moComparator.h | 4 ++-- mo/src/comparator/moEqualNeighborComparator.h | 4 ++-- mo/src/comparator/moEqualSolComparator.h | 4 ++-- mo/src/comparator/moEqualSolNeighborComparator.h | 4 ++-- mo/src/comparator/moNeighborComparator.h | 4 ++-- mo/src/comparator/moSolComparator.h | 4 ++-- mo/src/comparator/moSolNeighborComparator.h | 4 ++-- mo/src/continuator/moAverageFitnessNeighborStat.h | 4 ++-- mo/src/continuator/moBestFitnessStat.h | 4 ++-- mo/src/continuator/moBestNoImproveContinuator.h | 4 ++-- mo/src/continuator/moBestSoFarStat.h | 4 ++-- mo/src/continuator/moBooleanStat.h | 4 ++-- mo/src/continuator/moCheckpoint.h | 4 ++-- mo/src/continuator/moCombinedContinuator.h | 4 ++-- mo/src/continuator/moContinuator.h | 4 ++-- mo/src/continuator/moCounterMonitorSaver.h | 4 ++-- mo/src/continuator/moCounterStat.h | 4 ++-- mo/src/continuator/moDistanceStat.h | 4 ++-- mo/src/continuator/moEvalsContinuator.h | 4 ++-- mo/src/continuator/moFitContinuator.h | 4 ++-- mo/src/continuator/moFitnessStat.h | 4 ++-- mo/src/continuator/moFullEvalContinuator.h | 4 ++-- mo/src/continuator/moIterContinuator.h | 4 ++-- mo/src/continuator/moMaxNeighborStat.h | 4 ++-- mo/src/continuator/moMedianNeighborStat.h | 4 ++-- mo/src/continuator/moMinNeighborStat.h | 4 ++-- mo/src/continuator/moMinusOneCounterStat.h | 4 ++-- mo/src/continuator/moNbInfNeighborStat.h | 4 ++-- mo/src/continuator/moNbSupNeighborStat.h | 4 ++-- mo/src/continuator/moNeighborBestStat.h | 4 ++-- mo/src/continuator/moNeighborEvalContinuator.h | 4 ++-- mo/src/continuator/moNeighborFitnessStat.h | 4 ++-- mo/src/continuator/moNeighborhoodStat.h | 4 ++-- mo/src/continuator/moNeutralDegreeNeighborStat.h | 4 ++-- mo/src/continuator/moQ1NeighborStat.h | 4 ++-- mo/src/continuator/moQ3NeighborStat.h | 4 ++-- mo/src/continuator/moQuartilesNeighborStat.h | 4 ++-- mo/src/continuator/moSecondMomentNeighborStat.h | 4 ++-- mo/src/continuator/moSizeNeighborStat.h | 4 ++-- mo/src/continuator/moSolutionStat.h | 4 ++-- mo/src/continuator/moStat.h | 4 ++-- mo/src/continuator/moStatBase.h | 4 ++-- mo/src/continuator/moStatFromStat.h | 4 ++-- mo/src/continuator/moStdFitnessNeighborStat.h | 4 ++-- mo/src/continuator/moTimeContinuator.h | 4 ++-- mo/src/continuator/moTrueContinuator.h | 4 ++-- mo/src/continuator/moUnsignedStat.h | 4 ++-- mo/src/continuator/moUpdater.h | 4 ++-- mo/src/continuator/moValueParamContinuator.h | 4 ++-- mo/src/continuator/moValueStat.h | 4 ++-- mo/src/continuator/moVectorMonitor.h | 4 ++-- mo/src/coolingSchedule/moCoolingSchedule.h | 4 ++-- mo/src/coolingSchedule/moDynSpanCoolingSchedule.h | 4 ++-- mo/src/coolingSchedule/moSimpleCoolingSchedule.h | 4 ++-- mo/src/eval/moDoubleIncrEvaluation.h | 4 ++-- mo/src/eval/moDoubleIncrNeighborhoodEval.h | 4 ++-- mo/src/eval/moDummyEval.h | 4 ++-- mo/src/eval/moEval.h | 4 ++-- mo/src/eval/moEvalCounter.h | 4 ++-- mo/src/eval/moFullEvalByCopy.h | 4 ++-- mo/src/eval/moFullEvalByModif.h | 4 ++-- mo/src/eval/moNeighborhoodEvaluation.h | 4 ++-- mo/src/explorer/moDummyExplorer.h | 4 ++-- mo/src/explorer/moFirstImprHCexplorer.h | 4 ++-- mo/src/explorer/moILSexplorer.h | 4 ++-- mo/src/explorer/moMetropolisHastingExplorer.h | 4 ++-- mo/src/explorer/moNeighborhoodExplorer.h | 4 ++-- mo/src/explorer/moNeutralHCexplorer.h | 4 ++-- mo/src/explorer/moRandomBestHCexplorer.h | 4 ++-- mo/src/explorer/moRandomNeutralWalkExplorer.h | 4 ++-- mo/src/explorer/moRandomSearchExplorer.h | 4 ++-- mo/src/explorer/moRandomWalkExplorer.h | 4 ++-- mo/src/explorer/moSAexplorer.h | 4 ++-- mo/src/explorer/moSimpleHCexplorer.h | 4 ++-- mo/src/explorer/moTSexplorer.h | 4 ++-- mo/src/explorer/moVNSexplorer.h | 4 ++-- mo/src/memory/moAspiration.h | 4 ++-- mo/src/memory/moBestImprAspiration.h | 4 ++-- mo/src/memory/moCountMoveMemory.h | 4 ++-- mo/src/memory/moDiversification.h | 4 ++-- mo/src/memory/moDummyDiversification.h | 4 ++-- mo/src/memory/moDummyIntensification.h | 4 ++-- mo/src/memory/moDummyMemory.h | 4 ++-- mo/src/memory/moIndexedVectorTabuList.h | 4 ++-- mo/src/memory/moIntensification.h | 4 ++-- mo/src/memory/moMonOpDiversification.h | 4 ++-- mo/src/memory/moNeighborVectorTabuList.h | 4 ++-- mo/src/memory/moRndIndexedVectorTabuList.h | 4 ++-- mo/src/memory/moSolVectorTabuList.h | 4 ++-- mo/src/memory/moTabuList.h | 4 ++-- mo/src/mo.h | 4 ++-- mo/src/neighborhood/moBackableNeighbor.h | 4 ++-- mo/src/neighborhood/moBackwardVectorVNSelection.h | 4 ++-- mo/src/neighborhood/moDummyNeighbor.h | 4 ++-- mo/src/neighborhood/moDummyNeighborhood.h | 4 ++-- mo/src/neighborhood/moEvaluatedNeighborhood.h | 4 ++-- mo/src/neighborhood/moForwardVectorVNSelection.h | 4 ++-- mo/src/neighborhood/moIndexNeighbor.h | 4 ++-- mo/src/neighborhood/moIndexNeighborhood.h | 4 ++-- mo/src/neighborhood/moNeighbor.h | 4 ++-- mo/src/neighborhood/moNeighborhood.h | 4 ++-- mo/src/neighborhood/moOrderNeighborhood.h | 4 ++-- mo/src/neighborhood/moRndNeighborhood.h | 4 ++-- mo/src/neighborhood/moRndVectorVNSelection.h | 4 ++-- mo/src/neighborhood/moRndWithReplNeighborhood.h | 4 ++-- mo/src/neighborhood/moRndWithoutReplNeighborhood.h | 4 ++-- mo/src/neighborhood/moVariableNeighborhoodSelection.h | 4 ++-- mo/src/neighborhood/moVectorVNSelection.h | 4 ++-- mo/src/perturb/moLocalSearchInit.h | 4 ++-- mo/src/perturb/moMonOpPerturb.h | 4 ++-- mo/src/perturb/moNeighborhoodPerturb.h | 4 ++-- mo/src/perturb/moPerturbation.h | 4 ++-- mo/src/perturb/moRestartPerturb.h | 4 ++-- mo/src/perturb/moSolInit.h | 4 ++-- mo/src/problems/bitString/moBitFlipNeighborhood.h | 4 ++-- mo/src/problems/bitString/moBitNeighbor.h | 4 ++-- mo/src/problems/bitString/moBitsNeighbor.h | 4 ++-- mo/src/problems/bitString/moBitsNeighborhood.h | 4 ++-- mo/src/problems/bitString/moBitsWithReplNeighborhood.h | 4 ++-- mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h | 4 ++-- mo/src/problems/eval/moMaxSATincrEval.h | 4 ++-- mo/src/problems/eval/moNKlandscapesBitsIncrEval.h | 4 ++-- mo/src/problems/eval/moNKlandscapesIncrEval.h | 4 ++-- mo/src/problems/eval/moOneMaxBitsIncrEval.h | 4 ++-- mo/src/problems/eval/moOneMaxIncrEval.h | 4 ++-- mo/src/problems/eval/moQAPIncrEval.h | 4 ++-- mo/src/problems/eval/moRoyalRoadIncrEval.h | 4 ++-- mo/src/problems/eval/moUBQPBitsIncrEval.h | 4 ++-- mo/src/problems/eval/moUBQPSimpleIncrEval.h | 4 ++-- mo/src/problems/eval/moUBQPdoubleIncrEvaluation.h | 4 ++-- mo/src/problems/permutation/moIndexedSwapNeighbor.h | 4 ++-- mo/src/problems/permutation/moShiftNeighbor.h | 4 ++-- mo/src/problems/permutation/moSwapNeighbor.h | 4 ++-- mo/src/problems/permutation/moSwapNeighborhood.h | 4 ++-- mo/src/problems/permutation/moTwoOptExNeighbor.h | 4 ++-- mo/src/problems/permutation/moTwoOptExNeighborhood.h | 4 ++-- mo/src/sampling/moAdaptiveWalkSampling.h | 4 ++-- mo/src/sampling/moAutocorrelationSampling.h | 4 ++-- mo/src/sampling/moDensityOfStatesSampling.h | 4 ++-- mo/src/sampling/moFDCsampling.h | 4 ++-- mo/src/sampling/moFitnessCloudSampling.h | 4 ++-- mo/src/sampling/moHillClimberSampling.h | 4 ++-- mo/src/sampling/moMHBestFitnessCloudSampling.h | 4 ++-- mo/src/sampling/moMHRndFitnessCloudSampling.h | 4 ++-- mo/src/sampling/moNeutralDegreeSampling.h | 4 ++-- mo/src/sampling/moNeutralWalkSampling.h | 4 ++-- mo/src/sampling/moRndBestFitnessCloudSampling.h | 4 ++-- mo/src/sampling/moRndRndFitnessCloudSampling.h | 4 ++-- mo/src/sampling/moSampling.h | 4 ++-- mo/src/sampling/moStatistics.h | 4 ++-- mo/test/moTestClass.h | 4 ++-- mo/test/t-moAdaptiveWalkSampling.cpp | 4 ++-- mo/test/t-moAlwaysAcceptCrit.cpp | 4 ++-- mo/test/t-moAutocorrelationSampling.cpp | 4 ++-- mo/test/t-moBestImprAspiration.cpp | 4 ++-- mo/test/t-moBetterAcceptCrit.cpp | 4 ++-- mo/test/t-moBitNeighbor.cpp | 4 ++-- mo/test/t-moCheckpoint.cpp | 4 ++-- mo/test/t-moCombinedContinuator.cpp | 4 ++-- mo/test/t-moCountMoveMemory.cpp | 4 ++-- mo/test/t-moCounterMonitorSaver.cpp | 4 ++-- mo/test/t-moCounterStat.cpp | 4 ++-- mo/test/t-moDensityOfStatesSampling.cpp | 4 ++-- mo/test/t-moDistanceStat.cpp | 4 ++-- mo/test/t-moDummyEval.cpp | 4 ++-- mo/test/t-moDummyExplorer.cpp | 4 ++-- mo/test/t-moDummyLS.cpp | 4 ++-- mo/test/t-moDummyMemory.cpp | 4 ++-- mo/test/t-moDummyNeighbor.cpp | 4 ++-- mo/test/t-moDummyNeighborhood.cpp | 4 ++-- mo/test/t-moDynSpanCoolingSchedule.cpp | 4 ++-- mo/test/t-moEvalCounter.cpp | 4 ++-- mo/test/t-moFDCsampling.cpp | 4 ++-- mo/test/t-moFirstImprHC.cpp | 4 ++-- mo/test/t-moFirstImprHCexplorer.cpp | 4 ++-- mo/test/t-moFitContinuator.cpp | 4 ++-- mo/test/t-moFitnessCloudSampling.cpp | 4 ++-- mo/test/t-moFitnessStat.cpp | 4 ++-- mo/test/t-moFullEvalByCopy.cpp | 4 ++-- mo/test/t-moFullEvalByModif.cpp | 4 ++-- mo/test/t-moFullEvalContinuator.cpp | 4 ++-- mo/test/t-moHillClimberSampling.cpp | 4 ++-- mo/test/t-moILS.cpp | 4 ++-- mo/test/t-moILSexplorer.cpp | 4 ++-- mo/test/t-moIndexedVectorTabuList.cpp | 4 ++-- mo/test/t-moIterContinuator.cpp | 4 ++-- mo/test/t-moLocalSearch.cpp | 4 ++-- mo/test/t-moLocalSearchInit.cpp | 4 ++-- mo/test/t-moMetropolisHasting.cpp | 4 ++-- mo/test/t-moMetropolisHastingExplorer.cpp | 4 ++-- mo/test/t-moMinusOneCounterStat.cpp | 4 ++-- mo/test/t-moMonOpDiversification.cpp | 4 ++-- mo/test/t-moMonOpPerturb.cpp | 4 ++-- mo/test/t-moNKlandscapesIncrEval.cpp | 4 ++-- mo/test/t-moNeighbor.cpp | 4 ++-- mo/test/t-moNeighborBestStat.cpp | 4 ++-- mo/test/t-moNeighborComparator.cpp | 4 ++-- mo/test/t-moNeighborEvalContinuator.cpp | 4 ++-- mo/test/t-moNeighborFitnessStat.cpp | 4 ++-- mo/test/t-moNeighborVectorTabuList.cpp | 4 ++-- mo/test/t-moNeighborhoodPerturb.cpp | 4 ++-- mo/test/t-moNeighborhoodStat.cpp | 4 ++-- mo/test/t-moNeutralDegreeSampling.cpp | 4 ++-- mo/test/t-moNeutralHC.cpp | 4 ++-- mo/test/t-moNeutralHCexplorer.cpp | 4 ++-- mo/test/t-moNeutralWalkSampling.cpp | 4 ++-- mo/test/t-moOrderNeighborhood.cpp | 4 ++-- mo/test/t-moRandomBestHC.cpp | 4 ++-- mo/test/t-moRandomBestHCexplorer.cpp | 4 ++-- mo/test/t-moRandomNeutralWalk.cpp | 4 ++-- mo/test/t-moRandomNeutralWalkExplorer.cpp | 4 ++-- mo/test/t-moRandomSearch.cpp | 4 ++-- mo/test/t-moRandomSearchExplorer.cpp | 4 ++-- mo/test/t-moRandomWalk.cpp | 4 ++-- mo/test/t-moRandomWalkExplorer.cpp | 4 ++-- mo/test/t-moRestartPerturb.cpp | 4 ++-- mo/test/t-moRndIndexedVectorTabuList.cpp | 4 ++-- mo/test/t-moRndWithReplNeighborhood.cpp | 4 ++-- mo/test/t-moRndWithoutReplNeighborhood.cpp | 4 ++-- mo/test/t-moSA.cpp | 4 ++-- mo/test/t-moSAexplorer.cpp | 4 ++-- mo/test/t-moSampling.cpp | 4 ++-- mo/test/t-moSimpleCoolingSchedule.cpp | 4 ++-- mo/test/t-moSimpleHC.cpp | 4 ++-- mo/test/t-moSimpleHCexplorer.cpp | 4 ++-- mo/test/t-moSolComparator.cpp | 4 ++-- mo/test/t-moSolInit.cpp | 4 ++-- mo/test/t-moSolNeighborComparator.cpp | 4 ++-- mo/test/t-moSolVectorTabuList.cpp | 4 ++-- mo/test/t-moSolutionStat.cpp | 4 ++-- mo/test/t-moStatistics.cpp | 4 ++-- mo/test/t-moTS.cpp | 4 ++-- mo/test/t-moTSexplorer.cpp | 4 ++-- mo/test/t-moTimeContinuator.cpp | 4 ++-- mo/test/t-moTrueContinuator.cpp | 4 ++-- mo/test/t-moVectorMonitor.cpp | 4 ++-- moeo/doc/moeo.doxyfile.cmake | 2 +- moeo/src/algo/moeoASEEA.h | 4 ++-- moeo/src/algo/moeoAlgo.h | 4 ++-- moeo/src/algo/moeoEA.h | 4 ++-- moeo/src/algo/moeoEasyEA.h | 4 ++-- moeo/src/algo/moeoExtendedNSGAII.h | 4 ++-- moeo/src/algo/moeoExtendedSPEA2.h | 4 ++-- moeo/src/algo/moeoIBEA.h | 4 ++-- moeo/src/algo/moeoMOGA.h | 4 ++-- moeo/src/algo/moeoNSGA.h | 4 ++-- moeo/src/algo/moeoNSGAII.h | 4 ++-- moeo/src/algo/moeoPLS1.h | 4 ++-- moeo/src/algo/moeoPLS2.h | 4 ++-- moeo/src/algo/moeoPopAlgo.h | 4 ++-- moeo/src/algo/moeoPopLS.h | 4 ++-- moeo/src/algo/moeoSEEA.h | 4 ++-- moeo/src/algo/moeoSPEA2.h | 4 ++-- moeo/src/algo/moeoUnifiedDominanceBasedLS.h | 4 ++-- moeo/src/archive/moeo2DMinHypervolumeArchive.h | 4 ++-- moeo/src/archive/moeoArchive.h | 4 ++-- moeo/src/archive/moeoBoundedArchive.h | 4 ++-- moeo/src/archive/moeoEpsilonHyperboxArchive.h | 4 ++-- moeo/src/archive/moeoFitDivBoundedArchive.h | 4 ++-- moeo/src/archive/moeoFixedSizeArchive.h | 4 ++-- moeo/src/archive/moeoFuzzyArchive.h | 4 ++-- moeo/src/archive/moeoImprOnlyBoundedArchive.h | 4 ++-- moeo/src/archive/moeoSPEA2Archive.h | 4 ++-- moeo/src/archive/moeoUnboundedArchive.h | 4 ++-- moeo/src/comparator/moeoAggregativeComparator.h | 4 ++-- moeo/src/comparator/moeoComparator.h | 4 ++-- moeo/src/comparator/moeoDiversityThenFitnessComparator.h | 4 ++-- moeo/src/comparator/moeoEpsilonObjectiveVectorComparator.h | 4 ++-- moeo/src/comparator/moeoFitnessComparator.h | 4 ++-- moeo/src/comparator/moeoFitnessThenDiversityComparator.h | 4 ++-- moeo/src/comparator/moeoFuzzyParetoComparator.h | 4 ++-- moeo/src/comparator/moeoGDominanceObjectiveVectorComparator.h | 4 ++-- moeo/src/comparator/moeoObjectiveObjectiveVectorComparator.h | 4 ++-- moeo/src/comparator/moeoObjectiveVectorComparator.h | 4 ++-- moeo/src/comparator/moeoOneObjectiveComparator.h | 4 ++-- moeo/src/comparator/moeoParetoDualObjectiveVectorComparator.h | 2 +- moeo/src/comparator/moeoParetoObjectiveVectorComparator.h | 4 ++-- moeo/src/comparator/moeoStrictObjectiveVectorComparator.h | 4 ++-- moeo/src/comparator/moeoWeakObjectiveVectorComparator.h | 4 ++-- moeo/src/continue/moeoDualHypContinue.h | 2 +- moeo/src/continue/moeoHypContinue.h | 4 ++-- moeo/src/core/MOEO.h | 4 ++-- moeo/src/core/moeoBitVector.h | 4 ++-- moeo/src/core/moeoDualRealObjectiveVector.h | 2 +- moeo/src/core/moeoEvalFunc.h | 4 ++-- moeo/src/core/moeoFuzzyRealObjectiveVector.h | 4 ++-- moeo/src/core/moeoIntVector.h | 4 ++-- moeo/src/core/moeoObjectiveVector.h | 4 ++-- moeo/src/core/moeoObjectiveVectorTraits.cpp | 4 ++-- moeo/src/core/moeoObjectiveVectorTraits.h | 4 ++-- moeo/src/core/moeoRealObjectiveVector.h | 4 ++-- moeo/src/core/moeoRealVector.h | 4 ++-- moeo/src/core/moeoScalarObjectiveVector.h | 2 +- moeo/src/core/moeoVector.h | 4 ++-- moeo/src/distance/moeoBertDistance.h | 4 ++-- moeo/src/distance/moeoDistance.h | 4 ++-- moeo/src/distance/moeoDistanceMatrix.h | 4 ++-- moeo/src/distance/moeoEuclideanDistance.h | 4 ++-- moeo/src/distance/moeoExpectedFuzzyDistance.h | 4 ++-- moeo/src/distance/moeoManhattanDistance.h | 4 ++-- moeo/src/distance/moeoNormalizedDistance.h | 4 ++-- moeo/src/distance/moeoObjSpaceDistance.h | 4 ++-- moeo/src/diversity/moeoCrowdingDiversityAssignment.h | 4 ++-- moeo/src/diversity/moeoDiversityAssignment.h | 4 ++-- moeo/src/diversity/moeoDummyDiversityAssignment.h | 4 ++-- .../diversity/moeoFrontByFrontCrowdingDiversityAssignment.h | 4 ++-- .../diversity/moeoFrontByFrontSharingDiversityAssignment.h | 4 ++-- moeo/src/diversity/moeoFuzzyCrowdingDiversity.h | 4 ++-- moeo/src/diversity/moeoFuzzyNearestNeighborDiversity.h | 4 ++-- moeo/src/diversity/moeoNearestNeighborDiversityAssignment.h | 4 ++-- moeo/src/diversity/moeoSharingDiversityAssignment.h | 4 ++-- moeo/src/do/make_checkpoint_moeo.h | 4 ++-- moeo/src/do/make_continue_moeo.h | 4 ++-- moeo/src/do/make_ea_moeo.h | 4 ++-- moeo/src/explorer/moeoExhaustiveNeighborhoodExplorer.h | 4 ++-- moeo/src/explorer/moeoFirstImprovingNeighborhoodExplorer.h | 4 ++-- moeo/src/explorer/moeoNoDesimprovingNeighborhoodExplorer.h | 4 ++-- moeo/src/explorer/moeoPopNeighborhoodExplorer.h | 4 ++-- moeo/src/explorer/moeoSimpleSubNeighborhoodExplorer.h | 4 ++-- moeo/src/explorer/moeoSubNeighborhoodExplorer.h | 4 ++-- moeo/src/fitness/moeoAggregationFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoBinaryIndicatorBasedFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoConstraintFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoCriterionBasedFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoDominanceBasedFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoDominanceCountFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoDominanceCountRankingFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoDominanceDepthFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoDominanceRankFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoDummyFitnessAssignment.h | 4 ++-- .../moeoExpBinaryIndicatorBasedDualFitnessAssignment.h | 2 +- .../fitness/moeoExpBinaryIndicatorBasedFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoIndicatorBasedFitnessAssignment.h | 4 ++-- .../moeoReferencePointIndicatorBasedFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoScalarFitnessAssignment.h | 4 ++-- moeo/src/fitness/moeoSingleObjectivization.h | 4 ++-- moeo/src/fitness/moeoUnaryIndicatorBasedFitnessAssignment.h | 4 ++-- moeo/src/hybridization/moeoDMLSGenUpdater.h | 4 ++-- moeo/src/hybridization/moeoDMLSMonOp.h | 4 ++-- moeo/src/metric/moeoAdditiveEpsilonBinaryMetric.h | 4 ++-- moeo/src/metric/moeoContributionMetric.h | 4 ++-- moeo/src/metric/moeoDistanceMetric.h | 4 ++-- moeo/src/metric/moeoDualHyperVolumeDifferenceMetric.h | 2 +- moeo/src/metric/moeoEntropyMetric.h | 4 ++-- moeo/src/metric/moeoHyperVolumeDifferenceMetric.h | 4 ++-- moeo/src/metric/moeoHyperVolumeMetric.h | 4 ++-- moeo/src/metric/moeoHypervolumeBinaryMetric.h | 4 ++-- moeo/src/metric/moeoMetric.h | 4 ++-- .../src/metric/moeoNormalizedSolutionVsSolutionBinaryMetric.h | 4 ++-- moeo/src/metric/moeoVecVsVecAdditiveEpsilonBinaryMetric.h | 4 ++-- moeo/src/metric/moeoVecVsVecEpsilonBinaryMetric.h | 4 ++-- .../metric/moeoVecVsVecMultiplicativeEpsilonBinaryMetric.h | 4 ++-- moeo/src/replacement/moeoElitistReplacement.h | 4 ++-- moeo/src/replacement/moeoEnvironmentalReplacement.h | 4 ++-- moeo/src/replacement/moeoGenerationalReplacement.h | 4 ++-- moeo/src/replacement/moeoReplacement.h | 4 ++-- moeo/src/scalarStuffs/algo/moeoHC.h | 4 ++-- moeo/src/scalarStuffs/algo/moeoILS.h | 4 ++-- moeo/src/scalarStuffs/algo/moeoSA.h | 4 ++-- moeo/src/scalarStuffs/algo/moeoSolAlgo.h | 4 ++-- moeo/src/scalarStuffs/algo/moeoTS.h | 4 ++-- moeo/src/scalarStuffs/algo/moeoVFAS.h | 4 ++-- moeo/src/scalarStuffs/algo/moeoVNS.h | 4 ++-- moeo/src/scalarStuffs/archive/moeoQuadTree.h | 4 ++-- moeo/src/scalarStuffs/archive/moeoQuadTreeArchive.h | 4 ++-- .../distance/moeoAchievementScalarizingFunctionDistance.h | 4 ++-- .../moeoAugmentedAchievementScalarizingFunctionDistance.h | 4 ++-- .../distance/moeoAugmentedWeightedChebychevDistance.h | 4 ++-- .../src/scalarStuffs/distance/moeoWeightedChebychevDistance.h | 4 ++-- moeo/src/scalarStuffs/explorer/moeoHCMoveLoopExpl.h | 4 ++-- moeo/src/scalarStuffs/explorer/moeoTSMoveLoopExpl.h | 4 ++-- .../scalarStuffs/fitness/moeoAchievementFitnessAssignment.h | 4 ++-- ...oeoAchievementScalarizingFunctionMetricFitnessAssignment.h | 4 ++-- ...tedAchievementScalarizingFunctionMetricFitnessAssignment.h | 4 ++-- .../moeoAugmentedWeightedChebychevMetricFitnessAssignment.h | 4 ++-- .../src/scalarStuffs/fitness/moeoIncrEvalSingleObjectivizer.h | 4 ++-- moeo/src/scalarStuffs/fitness/moeoMetricFitnessAssignment.h | 4 ++-- .../fitness/moeoWeightedChebychevMetricFitnessAssignment.h | 4 ++-- moeo/src/scalarStuffs/weighting/moeoAnytimeWeightStrategy.h | 4 ++-- .../weighting/moeoAugmentedQexploreWeightStrategy.h | 4 ++-- moeo/src/scalarStuffs/weighting/moeoDichoWeightStrategy.h | 4 ++-- moeo/src/scalarStuffs/weighting/moeoDummyRefPointStrategy.h | 4 ++-- moeo/src/scalarStuffs/weighting/moeoDummyWeightStrategy.h | 4 ++-- .../weighting/moeoFixedTimeBothDirectionWeightStrategy.h | 4 ++-- .../weighting/moeoFixedTimeOneDirectionWeightStrategy.h | 4 ++-- moeo/src/scalarStuffs/weighting/moeoQexploreWeightStrategy.h | 4 ++-- moeo/src/scalarStuffs/weighting/moeoRandWeightStrategy.h | 4 ++-- .../src/scalarStuffs/weighting/moeoVariableRefPointStrategy.h | 4 ++-- moeo/src/scalarStuffs/weighting/moeoVariableWeightStrategy.h | 4 ++-- moeo/src/selection/moeoDetArchiveSelect.h | 4 ++-- moeo/src/selection/moeoDetTournamentSelect.h | 4 ++-- moeo/src/selection/moeoExhaustiveUnvisitedSelect.h | 4 ++-- moeo/src/selection/moeoNumberUnvisitedSelect.h | 4 ++-- moeo/src/selection/moeoRandomSelect.h | 4 ++-- moeo/src/selection/moeoRouletteSelect.h | 4 ++-- moeo/src/selection/moeoSelectFromPopAndArch.h | 4 ++-- moeo/src/selection/moeoSelectOne.h | 4 ++-- moeo/src/selection/moeoSelectors.h | 4 ++-- moeo/src/selection/moeoStochTournamentSelect.h | 4 ++-- moeo/src/selection/moeoUnvisitedSelect.h | 4 ++-- moeo/src/utils/moeoArchiveObjectiveVectorSavingUpdater.h | 4 ++-- moeo/src/utils/moeoArchiveUpdater.h | 4 ++-- moeo/src/utils/moeoAverageObjVecStat.h | 4 ++-- moeo/src/utils/moeoBestObjVecStat.h | 4 ++-- moeo/src/utils/moeoBinaryMetricSavingUpdater.h | 4 ++-- moeo/src/utils/moeoBinaryMetricStat.h | 2 +- moeo/src/utils/moeoConvertPopToObjectiveVectors.h | 4 ++-- moeo/src/utils/moeoDominanceMatrix.h | 4 ++-- moeo/src/utils/moeoFuzzyObjectiveVectorNormalizer.h | 4 ++-- moeo/src/utils/moeoObjVecStat.h | 4 ++-- moeo/src/utils/moeoObjectiveVectorNormalizer.h | 4 ++-- moeo/test/moeoTestClass.h | 4 ++-- moeo/test/t-moeo.cpp | 4 ++-- moeo/test/t-moeo2DMinHypervolumeArchive.cpp | 4 ++-- moeo/test/t-moeoASEEA.cpp | 4 ++-- moeo/test/t-moeoASFAMetric.cpp | 4 ++-- moeo/test/t-moeoASFAOrMetric.cpp | 4 ++-- moeo/test/t-moeoAchievementFitnessAssignment.cpp | 4 ++-- moeo/test/t-moeoAggregationFitnessAssignment.cpp | 4 ++-- moeo/test/t-moeoAggregativeComparator.cpp | 4 ++-- moeo/test/t-moeoAggregativeFitnessAssignment.cpp | 4 ++-- moeo/test/t-moeoBitVector.cpp | 4 ++-- moeo/test/t-moeoBoundedArchive.cpp | 4 ++-- moeo/test/t-moeoChebyshevMetric.cpp | 4 ++-- moeo/test/t-moeoChebyshevOrientedMetric.cpp | 4 ++-- moeo/test/t-moeoConstraintFitnessAssignment.cpp | 4 ++-- moeo/test/t-moeoCrowdingDiversityAssignment.cpp | 4 ++-- moeo/test/t-moeoDMLSGenUpdater.cpp | 4 ++-- moeo/test/t-moeoDMLSMonOp.cpp | 4 ++-- moeo/test/t-moeoDetArchiveSelect.cpp | 4 ++-- moeo/test/t-moeoDiversityThenFitnessComparator.cpp | 4 ++-- moeo/test/t-moeoDominanceCountFitnessAssignment.cpp | 4 ++-- moeo/test/t-moeoDominanceCountRankingFitnessAssignment.cpp | 4 ++-- moeo/test/t-moeoDominanceDepthFitnessAssignment.cpp | 4 ++-- moeo/test/t-moeoDominanceMatrix.cpp | 4 ++-- moeo/test/t-moeoDominanceRankFitnessAssignment.cpp | 4 ++-- moeo/test/t-moeoEasyEA.cpp | 4 ++-- moeo/test/t-moeoEpsilonHyperboxArchive.cpp | 4 ++-- moeo/test/t-moeoEpsilonObjectiveVectorComparator.cpp | 4 ++-- moeo/test/t-moeoExhaustiveNeighborhoodExplorer.cpp | 4 ++-- moeo/test/t-moeoExhaustiveUnvisitedSelect.cpp | 4 ++-- moeo/test/t-moeoExpBinaryIndicatorBasedFitnessAssignment.cpp | 4 ++-- moeo/test/t-moeoFirstImprovingNeighborhoodExplorer.cpp | 4 ++-- moeo/test/t-moeoFitDivBoundedArchive.cpp | 4 ++-- moeo/test/t-moeoFitnessThenDiversityComparator.cpp | 4 ++-- moeo/test/t-moeoHyperVolumeDifferenceMetric.cpp | 4 ++-- moeo/test/t-moeoHyperVolumeMetric.cpp | 4 ++-- moeo/test/t-moeoHypervolumeBinaryMetric.cpp | 4 ++-- moeo/test/t-moeoIBEA.cpp | 4 ++-- moeo/test/t-moeoImprOnlyBoundedArchive.cpp | 4 ++-- moeo/test/t-moeoIntVector.cpp | 4 ++-- moeo/test/t-moeoMOGA.cpp | 4 ++-- moeo/test/t-moeoMax3Obj.cpp | 4 ++-- moeo/test/t-moeoNSGA.cpp | 4 ++-- moeo/test/t-moeoNSGAII.cpp | 4 ++-- moeo/test/t-moeoNearestNeighborDiversityAssignment.cpp | 4 ++-- moeo/test/t-moeoNoDesimprovingNeighborhoodExplorer.cpp | 4 ++-- moeo/test/t-moeoNumberUnvisitedSelect.cpp | 4 ++-- moeo/test/t-moeoPLS1.cpp | 4 ++-- moeo/test/t-moeoPLS2.cpp | 4 ++-- moeo/test/t-moeoParetoObjectiveVectorComparator.cpp | 4 ++-- moeo/test/t-moeoQuadTreeArchive.cpp | 4 ++-- moeo/test/t-moeoRealVector.cpp | 4 ++-- moeo/test/t-moeoSEEA.cpp | 4 ++-- moeo/test/t-moeoSPEA2.cpp | 4 ++-- moeo/test/t-moeoSPEA2Archive.cpp | 4 ++-- moeo/test/t-moeoSharingDiversityAssignment.cpp | 4 ++-- moeo/test/t-moeoSimpleSubNeighborhoodExplorer.cpp | 4 ++-- moeo/test/t-moeoStrictObjectiveVectorComparator.cpp | 4 ++-- moeo/test/t-moeoUnboundedArchive.cpp | 4 ++-- moeo/test/t-moeoVecVsVecAdditiveEpsilonBinaryMetric.cpp | 4 ++-- moeo/test/t-moeoVecVsVecMultiplicativeEpsilonBinaryMetric.cpp | 4 ++-- moeo/test/t-moeoWeakObjectiveVectorComparator.cpp | 4 ++-- moeo/tutorial/Lesson1/Sch1.cpp | 4 ++-- moeo/tutorial/Lesson2/FlowShopEA.cpp | 4 ++-- moeo/tutorial/Lesson3/FlowShopEA2.cpp | 4 ++-- moeo/tutorial/Lesson4/FlowShopDMLS.cpp | 4 ++-- moeo/tutorial/examples/flowshop/FlowShop.cpp | 4 ++-- moeo/tutorial/examples/flowshop/FlowShop.h | 4 ++-- moeo/tutorial/examples/flowshop/FlowShopBenchmarkParser.cpp | 4 ++-- moeo/tutorial/examples/flowshop/FlowShopBenchmarkParser.h | 4 ++-- moeo/tutorial/examples/flowshop/FlowShopEval.cpp | 4 ++-- moeo/tutorial/examples/flowshop/FlowShopEval.h | 4 ++-- moeo/tutorial/examples/flowshop/FlowShopInit.h | 4 ++-- moeo/tutorial/examples/flowshop/FlowShopObjectiveVector.h | 4 ++-- .../examples/flowshop/FlowShopObjectiveVectorTraits.cpp | 4 ++-- .../examples/flowshop/FlowShopObjectiveVectorTraits.h | 4 ++-- moeo/tutorial/examples/flowshop/FlowShopOpCrossoverQuad.cpp | 4 ++-- moeo/tutorial/examples/flowshop/FlowShopOpCrossoverQuad.h | 4 ++-- moeo/tutorial/examples/flowshop/FlowShopOpMutationExchange.h | 4 ++-- moeo/tutorial/examples/flowshop/FlowShopOpMutationShift.h | 4 ++-- moeo/tutorial/examples/flowshop/make_eval_FlowShop.h | 4 ++-- moeo/tutorial/examples/flowshop/make_genotype_FlowShop.h | 4 ++-- moeo/tutorial/examples/flowshop/make_op_FlowShop.h | 4 ++-- problems/DTLZ/doc/moeo.doxyfile.cmake | 2 +- problems/DTLZ/src/DTLZ.cpp | 4 ++-- problems/DTLZ/src/DTLZ.h | 4 ++-- problems/DTLZ/src/DTLZ1Eval.cpp | 4 ++-- problems/DTLZ/src/DTLZ1Eval.h | 4 ++-- problems/DTLZ/src/DTLZ2Eval.cpp | 4 ++-- problems/DTLZ/src/DTLZ2Eval.h | 4 ++-- problems/DTLZ/src/DTLZ3Eval.cpp | 4 ++-- problems/DTLZ/src/DTLZ3Eval.h | 4 ++-- problems/DTLZ/src/DTLZ4Eval.cpp | 4 ++-- problems/DTLZ/src/DTLZ4Eval.h | 4 ++-- problems/DTLZ/src/DTLZ5Eval.cpp | 4 ++-- problems/DTLZ/src/DTLZ5Eval.h | 4 ++-- problems/DTLZ/src/DTLZ6Eval.cpp | 4 ++-- problems/DTLZ/src/DTLZ6Eval.h | 4 ++-- problems/DTLZ/src/DTLZ7Eval.cpp | 4 ++-- problems/DTLZ/src/DTLZ7Eval.h | 4 ++-- problems/DTLZ/src/DTLZObjectiveVector.h | 4 ++-- problems/DTLZ/src/PolynomialMutation.h | 4 ++-- problems/DTLZ/src/SBXCrossover.h | 4 ++-- problems/DTLZ/test/t-DTLZ.cpp | 4 ++-- problems/DTLZ/test/t-DTLZ1Eval.cpp | 4 ++-- problems/DTLZ/test/t-DTLZ2Eval.cpp | 4 ++-- problems/DTLZ/test/t-DTLZ3Eval.cpp | 4 ++-- problems/DTLZ/test/t-DTLZ4Eval.cpp | 4 ++-- problems/DTLZ/test/t-DTLZ5Eval.cpp | 4 ++-- problems/DTLZ/test/t-DTLZ6Eval.cpp | 4 ++-- problems/DTLZ/test/t-DTLZ7Eval.cpp | 4 ++-- problems/eval/bbRoyalRoadEval.h | 4 ++-- problems/eval/longKPathEval.h | 4 ++-- problems/eval/maxSATeval.h | 4 ++-- problems/eval/moPopSolEval.h | 4 ++-- problems/eval/nkLandscapesEval.h | 4 ++-- problems/eval/nkpLandscapesEval.h | 4 ++-- problems/eval/nkqLandscapesEval.h | 4 ++-- problems/eval/oneMaxEval.h | 4 ++-- problems/eval/oneMaxPopEval.h | 4 ++-- problems/eval/qapEval.h | 4 ++-- problems/eval/queenEval.h | 4 ++-- problems/eval/royalRoadEval.h | 4 ++-- problems/eval/ubqpEval.h | 4 ++-- smp/doc/smp.doxyfile.cmake | 2 +- smp/src/MWAlgo/MWAlgo.h | 4 ++-- smp/src/MWModel.cpp | 4 ++-- smp/src/MWModel.h | 4 ++-- smp/src/PPExpander.h | 4 ++-- smp/src/abstractIsland.h | 4 ++-- smp/src/algoDispatching.h | 4 ++-- smp/src/bimap.cpp | 4 ++-- smp/src/bimap.h | 4 ++-- smp/src/contDispatching.h | 4 ++-- smp/src/contWrapper.cpp | 4 ++-- smp/src/contWrapper.h | 4 ++-- smp/src/intPolicy.h | 4 ++-- smp/src/island.cpp | 4 ++-- smp/src/island.h | 4 ++-- smp/src/islandModel.cpp | 4 ++-- smp/src/islandModel.h | 4 ++-- smp/src/islandModelWrapper.h | 4 ++-- smp/src/islandNotifier.cpp | 4 ++-- smp/src/islandNotifier.h | 4 ++-- smp/src/migPolicy.h | 4 ++-- smp/src/notifier.cpp | 4 ++-- smp/src/notifier.h | 4 ++-- smp/src/policiesDispatching.h | 4 ++-- smp/src/policyElement.cpp | 4 ++-- smp/src/policyElement.h | 4 ++-- smp/src/scheduler.cpp | 4 ++-- smp/src/scheduler.h | 4 ++-- smp/src/sharedFitContinue.cpp | 4 ++-- smp/src/sharedFitContinue.h | 4 ++-- smp/src/smp.h | 4 ++-- smp/src/topology/abstractTopology.h | 4 ++-- smp/src/topology/complete.cpp | 4 ++-- smp/src/topology/complete.h | 4 ++-- smp/src/topology/customBooleanTopology.cpp | 4 ++-- smp/src/topology/customBooleanTopology.h | 4 ++-- smp/src/topology/customStochasticTopology.cpp | 4 ++-- smp/src/topology/customStochasticTopology.h | 4 ++-- smp/src/topology/hypercubic.cpp | 4 ++-- smp/src/topology/hypercubic.h | 4 ++-- smp/src/topology/mesh.cpp | 4 ++-- smp/src/topology/mesh.h | 4 ++-- smp/src/topology/ring.cpp | 4 ++-- smp/src/topology/ring.h | 4 ++-- smp/src/topology/star.cpp | 4 ++-- smp/src/topology/star.h | 4 ++-- smp/src/topology/topology.cpp | 4 ++-- smp/src/topology/topology.h | 4 ++-- smp/src/topology/topologyBuilder.h | 4 ++-- smp/tutorial/Lesson1/QAP.h | 4 ++-- smp/tutorial/Lesson1/QAPGA.h | 4 ++-- smp/tutorial/Lesson1/parserStruct.h | 4 ++-- smp/tutorial/Lesson1/utils.h | 4 ++-- smp/tutorial/Lesson2/lesson2_homogeneous.cpp | 4 ++-- smp/tutorial/Lesson3/lesson3_heterogeneous.cpp | 4 ++-- smp/tutorial/Lesson4/lesson4_topology.cpp | 4 ++-- 675 files changed, 1278 insertions(+), 1278 deletions(-) diff --git a/ForRelease b/ForRelease index 870f6cb84..d3600bf3b 100644 --- a/ForRelease +++ b/ForRelease @@ -22,7 +22,7 @@ When reaching stable versions: insanely fast. Learn more about EO on the official website: - http://eodev.sourceforge.net/ + https://nojhan.github.io/paradiseo/ You will find the release x.y.z at the following address: https://sourceforge.net/projects/eodev/files/eo/ diff --git a/cmake/Package.cmake b/cmake/Package.cmake index 9c0cb5145..28991bd0e 100644 --- a/cmake/Package.cmake +++ b/cmake/Package.cmake @@ -53,7 +53,7 @@ set(CPACK_PACKAGE_DESCRIPTION "ParadisEO is a white-box object-oriented framewor set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "A Software Framework for Metaheuristics") set(CPACK_PACKAGE_VENDOR "Inria/Thales") -set(CPACK_PACKAGE_CONTACT "paradiseo-help@lists.gforge.inria.fr") +set(CPACK_PACKAGE_CONTACT "https://github.com/nojhan/paradiseo/issues") set(CPACK_PACKAGE_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(CPACK_STRIP_FILES ${PACKAGE_NAME}) set(CPACK_SOURCE_STRIP_FILES "bin/${PROJECT_NAME}") diff --git a/eo/README b/eo/README index d4268be0f..51458a2e6 100644 --- a/eo/README +++ b/eo/README @@ -1,13 +1,13 @@ EO README FILE ======================================================================= - check latest news at http://eodev.sourceforge.net/ + check latest news at https://nojhan.github.io/paradiseo/ ======================================================================= Welcome to EO, the Evolving Objects library. The latest news about EO can be found on the sourceforge repository at - http://eodev.sourceforge.net/ + https://nojhan.github.io/paradiseo/ In case of any problem, please e-mail us at eodev-main@lists.sourceforge.net diff --git a/eo/src/eoDualFitness.h b/eo/src/eoDualFitness.h index 7fdf402d3..6f78c900c 100644 --- a/eo/src/eoDualFitness.h +++ b/eo/src/eoDualFitness.h @@ -16,7 +16,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/eoEvalCmd.h b/eo/src/eoEvalCmd.h index 0f2633a98..746fcf927 100644 --- a/eo/src/eoEvalCmd.h +++ b/eo/src/eoEvalCmd.h @@ -15,7 +15,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/eoEvalCounterThrowException.h b/eo/src/eoEvalCounterThrowException.h index a17982a43..85955d421 100644 --- a/eo/src/eoEvalCounterThrowException.h +++ b/eo/src/eoEvalCounterThrowException.h @@ -15,7 +15,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/eoEvalNamedPipe.h b/eo/src/eoEvalNamedPipe.h index 02d6dc67a..e7a1714ef 100644 --- a/eo/src/eoEvalNamedPipe.h +++ b/eo/src/eoEvalNamedPipe.h @@ -15,7 +15,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/eoEvalNanThrowException.h b/eo/src/eoEvalNanThrowException.h index 41251d10f..f55dd2c6e 100644 --- a/eo/src/eoEvalNanThrowException.h +++ b/eo/src/eoEvalNanThrowException.h @@ -15,7 +15,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/eoEvalTimeThrowException.h b/eo/src/eoEvalTimeThrowException.h index 5b72de6bc..86643a7bc 100644 --- a/eo/src/eoEvalTimeThrowException.h +++ b/eo/src/eoEvalTimeThrowException.h @@ -15,7 +15,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/eoEvalUserTimeThrowException.h b/eo/src/eoEvalUserTimeThrowException.h index a11748491..e83544dea 100644 --- a/eo/src/eoEvalUserTimeThrowException.h +++ b/eo/src/eoEvalUserTimeThrowException.h @@ -15,7 +15,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/eoExceptions.h b/eo/src/eoExceptions.h index a41a7e4a9..99b675638 100644 --- a/eo/src/eoExceptions.h +++ b/eo/src/eoExceptions.h @@ -15,7 +15,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/eoInvertedContinue.h b/eo/src/eoInvertedContinue.h index 9b723a5ec..482a498fb 100644 --- a/eo/src/eoInvertedContinue.h +++ b/eo/src/eoInvertedContinue.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _eoInvertedContinue_h diff --git a/eo/src/eoPartiallyMappedXover.h b/eo/src/eoPartiallyMappedXover.h index b10a03ca3..e42866db1 100644 --- a/eo/src/eoPartiallyMappedXover.h +++ b/eo/src/eoPartiallyMappedXover.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef eoPartiallyMappedXover__h #define eoPartiallyMappedXover__h diff --git a/eo/src/es/eoEsChromInit.h b/eo/src/es/eoEsChromInit.h index 2d4b7b8a1..3c3cab890 100644 --- a/eo/src/es/eoEsChromInit.h +++ b/eo/src/es/eoEsChromInit.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr mak@dhi.dk diff --git a/eo/src/es/eoEsSimple.h b/eo/src/es/eoEsSimple.h index 812b9936b..ceedbeb2a 100644 --- a/eo/src/es/eoEsSimple.h +++ b/eo/src/es/eoEsSimple.h @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr mak@dhi.dk diff --git a/eo/src/es/eoEsStdev.h b/eo/src/es/eoEsStdev.h index ad8ffb26f..5fcef78ba 100644 --- a/eo/src/es/eoEsStdev.h +++ b/eo/src/es/eoEsStdev.h @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr mak@dhi.dk diff --git a/eo/src/es/make_genotype_es.cpp b/eo/src/es/make_genotype_es.cpp index d0861c9fd..48bc9e4c4 100644 --- a/eo/src/es/make_genotype_es.cpp +++ b/eo/src/es/make_genotype_es.cpp @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr mkeijzer@dhi.dk diff --git a/eo/src/es/make_genotype_real.h b/eo/src/es/make_genotype_real.h index 2796d19a7..b39367e11 100644 --- a/eo/src/es/make_genotype_real.h +++ b/eo/src/es/make_genotype_real.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr mkeijzer@dhi.dk diff --git a/eo/src/es/make_op_es.h b/eo/src/es/make_op_es.h index d52669489..43620916b 100644 --- a/eo/src/es/make_op_es.h +++ b/eo/src/es/make_op_es.h @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr mkeijzer@dhi.dk diff --git a/eo/src/mpi/eoMpi.cpp b/eo/src/mpi/eoMpi.cpp index cceb403b5..864efe543 100644 --- a/eo/src/mpi/eoMpi.cpp +++ b/eo/src/mpi/eoMpi.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/mpi/eoMpi.h b/eo/src/mpi/eoMpi.h index 1038078ee..1c2d8ce5b 100644 --- a/eo/src/mpi/eoMpi.h +++ b/eo/src/mpi/eoMpi.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/mpi/eoMpiAssignmentAlgorithm.cpp b/eo/src/mpi/eoMpiAssignmentAlgorithm.cpp index 39ce02f18..459f5bef6 100644 --- a/eo/src/mpi/eoMpiAssignmentAlgorithm.cpp +++ b/eo/src/mpi/eoMpiAssignmentAlgorithm.cpp @@ -15,7 +15,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/mpi/eoMpiAssignmentAlgorithm.h b/eo/src/mpi/eoMpiAssignmentAlgorithm.h index abe465b8b..4e53a1c90 100644 --- a/eo/src/mpi/eoMpiAssignmentAlgorithm.h +++ b/eo/src/mpi/eoMpiAssignmentAlgorithm.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/mpi/eoMpiNode.cpp b/eo/src/mpi/eoMpiNode.cpp index d2ed436a3..54bfa8797 100644 --- a/eo/src/mpi/eoMpiNode.cpp +++ b/eo/src/mpi/eoMpiNode.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/mpi/eoMpiNode.h b/eo/src/mpi/eoMpiNode.h index 268d89690..5698ecbbf 100644 --- a/eo/src/mpi/eoMpiNode.h +++ b/eo/src/mpi/eoMpiNode.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/mpi/eoParallelApply.h b/eo/src/mpi/eoParallelApply.h index 6ee01c81d..4df9076d3 100644 --- a/eo/src/mpi/eoParallelApply.h +++ b/eo/src/mpi/eoParallelApply.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/mpi/eoTerminateJob.h b/eo/src/mpi/eoTerminateJob.h index 2f299916b..a18a101d6 100644 --- a/eo/src/mpi/eoTerminateJob.h +++ b/eo/src/mpi/eoTerminateJob.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/mpi/implMpi.cpp b/eo/src/mpi/implMpi.cpp index d045da3ac..b221a7bed 100644 --- a/eo/src/mpi/implMpi.cpp +++ b/eo/src/mpi/implMpi.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/mpi/implMpi.h b/eo/src/mpi/implMpi.h index 0efb89a75..43b8333c1 100644 --- a/eo/src/mpi/implMpi.h +++ b/eo/src/mpi/implMpi.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/Entity.h b/eo/src/serial/Entity.h index 50155e13a..11774969d 100644 --- a/eo/src/serial/Entity.h +++ b/eo/src/serial/Entity.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/Parser.cpp b/eo/src/serial/Parser.cpp index e78b35392..6f46a33b3 100644 --- a/eo/src/serial/Parser.cpp +++ b/eo/src/serial/Parser.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/Parser.h b/eo/src/serial/Parser.h index 392f25ffa..593369ad8 100644 --- a/eo/src/serial/Parser.h +++ b/eo/src/serial/Parser.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/SerialArray.cpp b/eo/src/serial/SerialArray.cpp index 5282370f5..0b38a533d 100644 --- a/eo/src/serial/SerialArray.cpp +++ b/eo/src/serial/SerialArray.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/SerialArray.h b/eo/src/serial/SerialArray.h index b349953aa..63940443a 100644 --- a/eo/src/serial/SerialArray.h +++ b/eo/src/serial/SerialArray.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/SerialObject.cpp b/eo/src/serial/SerialObject.cpp index e926e448f..f7ba24e32 100644 --- a/eo/src/serial/SerialObject.cpp +++ b/eo/src/serial/SerialObject.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/SerialObject.h b/eo/src/serial/SerialObject.h index 9424f1c4c..1c9a9a7c7 100644 --- a/eo/src/serial/SerialObject.h +++ b/eo/src/serial/SerialObject.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/SerialString.cpp b/eo/src/serial/SerialString.cpp index 6d49106cc..bb6694e8d 100644 --- a/eo/src/serial/SerialString.cpp +++ b/eo/src/serial/SerialString.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/SerialString.h b/eo/src/serial/SerialString.h index 2ef1f94f5..ec74f6029 100644 --- a/eo/src/serial/SerialString.h +++ b/eo/src/serial/SerialString.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/Serializable.h b/eo/src/serial/Serializable.h index 715e9c973..14746a17a 100644 --- a/eo/src/serial/Serializable.h +++ b/eo/src/serial/Serializable.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/Traits.h b/eo/src/serial/Traits.h index 7cce0959e..38df23f18 100644 --- a/eo/src/serial/Traits.h +++ b/eo/src/serial/Traits.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/Utils.h b/eo/src/serial/Utils.h index 5acc558ba..4e5770ab7 100644 --- a/eo/src/serial/Utils.h +++ b/eo/src/serial/Utils.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/serial/eoSerial.h b/eo/src/serial/eoSerial.h index fec5fb4dd..16d5a2c29 100644 --- a/eo/src/serial/eoSerial.h +++ b/eo/src/serial/eoSerial.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/src/utils/eoFeasibleRatioStat.h b/eo/src/utils/eoFeasibleRatioStat.h index cbbe17386..010e74c89 100644 --- a/eo/src/utils/eoFeasibleRatioStat.h +++ b/eo/src/utils/eoFeasibleRatioStat.h @@ -16,7 +16,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/utils/eoHowMany.h b/eo/src/utils/eoHowMany.h index 780439851..c5faf9eab 100644 --- a/eo/src/utils/eoHowMany.h +++ b/eo/src/utils/eoHowMany.h @@ -21,7 +21,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo */ //----------------------------------------------------------------------------- diff --git a/eo/src/utils/eoLogMessage.h b/eo/src/utils/eoLogMessage.h index 4a9a02381..0e6334e58 100644 --- a/eo/src/utils/eoLogMessage.h +++ b/eo/src/utils/eoLogMessage.h @@ -13,7 +13,7 @@ with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/utils/eoLogMonitor.h b/eo/src/utils/eoLogMonitor.h index 46420ef3f..27225dc63 100644 --- a/eo/src/utils/eoLogMonitor.h +++ b/eo/src/utils/eoLogMonitor.h @@ -15,7 +15,7 @@ with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/utils/eoLogger.cpp b/eo/src/utils/eoLogger.cpp index 1330c5323..c3156a6a7 100644 --- a/eo/src/utils/eoLogger.cpp +++ b/eo/src/utils/eoLogger.cpp @@ -18,7 +18,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/utils/eoLogger.h b/eo/src/utils/eoLogger.h index 785d37acd..99fe2d43d 100644 --- a/eo/src/utils/eoLogger.h +++ b/eo/src/utils/eoLogger.h @@ -17,7 +17,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/eo/src/utils/eoOStreamMonitor.h b/eo/src/utils/eoOStreamMonitor.h index dab0ea776..d2bb4c973 100644 --- a/eo/src/utils/eoOStreamMonitor.h +++ b/eo/src/utils/eoOStreamMonitor.h @@ -15,7 +15,7 @@ with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: todos@geneura.ugr.es diff --git a/eo/src/utils/eoParallel.cpp b/eo/src/utils/eoParallel.cpp index 41704c54b..44da6061f 100644 --- a/eo/src/utils/eoParallel.cpp +++ b/eo/src/utils/eoParallel.cpp @@ -18,7 +18,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Caner Candan diff --git a/eo/src/utils/eoParallel.h b/eo/src/utils/eoParallel.h index 929d955d6..2435d8457 100644 --- a/eo/src/utils/eoParallel.h +++ b/eo/src/utils/eoParallel.h @@ -17,7 +17,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Caner Candan diff --git a/eo/src/utils/eoParser.cpp b/eo/src/utils/eoParser.cpp index a7c3c185b..78490c856 100644 --- a/eo/src/utils/eoParser.cpp +++ b/eo/src/utils/eoParser.cpp @@ -18,7 +18,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr diff --git a/eo/src/utils/eoParser.h b/eo/src/utils/eoParser.h index 8e1df04f5..d30ec0c9b 100644 --- a/eo/src/utils/eoParser.h +++ b/eo/src/utils/eoParser.h @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr diff --git a/eo/src/utils/eoSignal.cpp b/eo/src/utils/eoSignal.cpp index eb12382fd..3d5e2e078 100644 --- a/eo/src/utils/eoSignal.cpp +++ b/eo/src/utils/eoSignal.cpp @@ -15,7 +15,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Contact: http://eodev.sourceforge.net + Contact: https://nojhan.github.io/paradiseo Autors: todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr diff --git a/eo/src/utils/eoSignal.h b/eo/src/utils/eoSignal.h index c9f7ecf57..c21294030 100644 --- a/eo/src/utils/eoSignal.h +++ b/eo/src/utils/eoSignal.h @@ -15,7 +15,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Contact: http://eodev.sourceforge.net + Contact: https://nojhan.github.io/paradiseo Authors: todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr diff --git a/eo/src/utils/eoStat.h b/eo/src/utils/eoStat.h index 9803f66cd..da68248df 100644 --- a/eo/src/utils/eoStat.h +++ b/eo/src/utils/eoStat.h @@ -19,7 +19,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: todos@geneura.ugr.es, http://geneura.ugr.es diff --git a/eo/src/utils/eoStdoutMonitor.h b/eo/src/utils/eoStdoutMonitor.h index dba8be98c..1bf4355fc 100644 --- a/eo/src/utils/eoStdoutMonitor.h +++ b/eo/src/utils/eoStdoutMonitor.h @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: todos@geneura.ugr.es diff --git a/eo/src/utils/eoTimer.h b/eo/src/utils/eoTimer.h index 5ced8c6bd..948c49dac 100644 --- a/eo/src/utils/eoTimer.h +++ b/eo/src/utils/eoTimer.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/test/mpi/t-mpi-eval.cpp b/eo/test/mpi/t-mpi-eval.cpp index fb97701d2..16dd76d85 100644 --- a/eo/test/mpi/t-mpi-eval.cpp +++ b/eo/test/mpi/t-mpi-eval.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/test/mpi/t-mpi-multipleRoles.cpp b/eo/test/mpi/t-mpi-multipleRoles.cpp index e0ca7ed68..ea97e100c 100644 --- a/eo/test/mpi/t-mpi-multipleRoles.cpp +++ b/eo/test/mpi/t-mpi-multipleRoles.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/test/mpi/t-mpi-parallelApply.cpp b/eo/test/mpi/t-mpi-parallelApply.cpp index efe8b2364..cd616625d 100644 --- a/eo/test/mpi/t-mpi-parallelApply.cpp +++ b/eo/test/mpi/t-mpi-parallelApply.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/test/mpi/t-mpi-wrapper.cpp b/eo/test/mpi/t-mpi-wrapper.cpp index 7e5fa4d2f..4cfe4ed95 100644 --- a/eo/test/mpi/t-mpi-wrapper.cpp +++ b/eo/test/mpi/t-mpi-wrapper.cpp @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Benjamin Bouvier diff --git a/eo/test/t-openmp.cpp b/eo/test/t-openmp.cpp index d2f4cf3b5..2a5dbee89 100644 --- a/eo/test/t-openmp.cpp +++ b/eo/test/t-openmp.cpp @@ -17,7 +17,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Caner Candan diff --git a/eo/test/t-openmp.py b/eo/test/t-openmp.py index 0b0ea157b..986ee7ba6 100755 --- a/eo/test/t-openmp.py +++ b/eo/test/t-openmp.py @@ -17,7 +17,7 @@ # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# Contact: http://eodev.sourceforge.net +# Contact: https://nojhan.github.io/paradiseo # # Authors: # Caner Candan diff --git a/mo/doc/mo.doxyfile.cmake b/mo/doc/mo.doxyfile.cmake index a3bbe9e1a..0065798a2 100644 --- a/mo/doc/mo.doxyfile.cmake +++ b/mo/doc/mo.doxyfile.cmake @@ -1295,7 +1295,7 @@ SKIP_FUNCTION_MACROS = YES # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. -TAGFILES = @EO_BIN_DIR@/doc/eo.doxytag=http://eodev.sourceforge.net/eo/doc/html +TAGFILES = @EO_BIN_DIR@/doc/eo.doxytag=https://nojhan.github.io/paradiseo/eo/doc/html # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. diff --git a/mo/src/acceptCrit/moAcceptanceCriterion.h b/mo/src/acceptCrit/moAcceptanceCriterion.h index 266b30f45..dc4ff7fe1 100644 --- a/mo/src/acceptCrit/moAcceptanceCriterion.h +++ b/mo/src/acceptCrit/moAcceptanceCriterion.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moAcceptanceCriterion_h diff --git a/mo/src/acceptCrit/moAlwaysAcceptCrit.h b/mo/src/acceptCrit/moAlwaysAcceptCrit.h index ef2541d2f..f0d8102a3 100644 --- a/mo/src/acceptCrit/moAlwaysAcceptCrit.h +++ b/mo/src/acceptCrit/moAlwaysAcceptCrit.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moAlwaysAcceptCrit_h diff --git a/mo/src/acceptCrit/moBetterAcceptCrit.h b/mo/src/acceptCrit/moBetterAcceptCrit.h index e8bfae9d5..578fff574 100644 --- a/mo/src/acceptCrit/moBetterAcceptCrit.h +++ b/mo/src/acceptCrit/moBetterAcceptCrit.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moBetterAcceptCrit_h diff --git a/mo/src/algo/eoDummyMonOp.h b/mo/src/algo/eoDummyMonOp.h index bdb303844..fde599f9f 100644 --- a/mo/src/algo/eoDummyMonOp.h +++ b/mo/src/algo/eoDummyMonOp.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDummyMonOp_h diff --git a/mo/src/algo/moDummyLS.h b/mo/src/algo/moDummyLS.h index fd24d3575..e1487072a 100644 --- a/mo/src/algo/moDummyLS.h +++ b/mo/src/algo/moDummyLS.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDummyLS_h diff --git a/mo/src/algo/moFirstImprHC.h b/mo/src/algo/moFirstImprHC.h index 4793ef626..e790d4c90 100644 --- a/mo/src/algo/moFirstImprHC.h +++ b/mo/src/algo/moFirstImprHC.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moFirstImprHC_h diff --git a/mo/src/algo/moILS.h b/mo/src/algo/moILS.h index 934335b2d..fb430dc23 100644 --- a/mo/src/algo/moILS.h +++ b/mo/src/algo/moILS.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moILS_h diff --git a/mo/src/algo/moLocalSearch.h b/mo/src/algo/moLocalSearch.h index bf77a8f3f..5816b071d 100644 --- a/mo/src/algo/moLocalSearch.h +++ b/mo/src/algo/moLocalSearch.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moLocalSearch_h diff --git a/mo/src/algo/moMetropolisHasting.h b/mo/src/algo/moMetropolisHasting.h index 5b4292459..8de576d7a 100644 --- a/mo/src/algo/moMetropolisHasting.h +++ b/mo/src/algo/moMetropolisHasting.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moMetropolisHasting_h diff --git a/mo/src/algo/moNeutralHC.h b/mo/src/algo/moNeutralHC.h index 2fd2583d5..4295ec7f3 100644 --- a/mo/src/algo/moNeutralHC.h +++ b/mo/src/algo/moNeutralHC.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moNeutralHC_h diff --git a/mo/src/algo/moRandomBestHC.h b/mo/src/algo/moRandomBestHC.h index 3e7a32d62..36ced8a4f 100644 --- a/mo/src/algo/moRandomBestHC.h +++ b/mo/src/algo/moRandomBestHC.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRandomBestHC_h diff --git a/mo/src/algo/moRandomNeutralWalk.h b/mo/src/algo/moRandomNeutralWalk.h index 4f21588c5..9b52d8402 100644 --- a/mo/src/algo/moRandomNeutralWalk.h +++ b/mo/src/algo/moRandomNeutralWalk.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRandomNeutralWalk_h diff --git a/mo/src/algo/moRandomSearch.h b/mo/src/algo/moRandomSearch.h index c0a468d6a..55b08cf20 100644 --- a/mo/src/algo/moRandomSearch.h +++ b/mo/src/algo/moRandomSearch.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRandomSearch_h diff --git a/mo/src/algo/moRandomWalk.h b/mo/src/algo/moRandomWalk.h index 6ccdbc107..479f47068 100644 --- a/mo/src/algo/moRandomWalk.h +++ b/mo/src/algo/moRandomWalk.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRandomWalk_h diff --git a/mo/src/algo/moSA.h b/mo/src/algo/moSA.h index 5748f020a..9f114fb0a 100644 --- a/mo/src/algo/moSA.h +++ b/mo/src/algo/moSA.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSA_h diff --git a/mo/src/algo/moSimpleHC.h b/mo/src/algo/moSimpleHC.h index c334d0629..a75d5c5fa 100644 --- a/mo/src/algo/moSimpleHC.h +++ b/mo/src/algo/moSimpleHC.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSimpleHC_h diff --git a/mo/src/algo/moTS.h b/mo/src/algo/moTS.h index cd1a6dc57..725258dda 100644 --- a/mo/src/algo/moTS.h +++ b/mo/src/algo/moTS.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moTS_h diff --git a/mo/src/algo/moVNS.h b/mo/src/algo/moVNS.h index 050e29593..b67e9d017 100644 --- a/mo/src/algo/moVNS.h +++ b/mo/src/algo/moVNS.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moVNS_h diff --git a/mo/src/comparator/moComparator.h b/mo/src/comparator/moComparator.h index 153e39422..3c48a8970 100644 --- a/mo/src/comparator/moComparator.h +++ b/mo/src/comparator/moComparator.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moComparator_h diff --git a/mo/src/comparator/moEqualNeighborComparator.h b/mo/src/comparator/moEqualNeighborComparator.h index 6ea148df0..529bc39b7 100644 --- a/mo/src/comparator/moEqualNeighborComparator.h +++ b/mo/src/comparator/moEqualNeighborComparator.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moEqualNeighborComparator_h diff --git a/mo/src/comparator/moEqualSolComparator.h b/mo/src/comparator/moEqualSolComparator.h index 0764d4e21..4f702a8ee 100644 --- a/mo/src/comparator/moEqualSolComparator.h +++ b/mo/src/comparator/moEqualSolComparator.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moEqualSolComparator_h diff --git a/mo/src/comparator/moEqualSolNeighborComparator.h b/mo/src/comparator/moEqualSolNeighborComparator.h index 6f706dc73..b995f94fe 100644 --- a/mo/src/comparator/moEqualSolNeighborComparator.h +++ b/mo/src/comparator/moEqualSolNeighborComparator.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moEqualSolNeighborComparator_h diff --git a/mo/src/comparator/moNeighborComparator.h b/mo/src/comparator/moNeighborComparator.h index 869adbb5c..46d41d6de 100644 --- a/mo/src/comparator/moNeighborComparator.h +++ b/mo/src/comparator/moNeighborComparator.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moNeighborComparator_h diff --git a/mo/src/comparator/moSolComparator.h b/mo/src/comparator/moSolComparator.h index d7f30c2f8..800f8f178 100644 --- a/mo/src/comparator/moSolComparator.h +++ b/mo/src/comparator/moSolComparator.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSolComparator_h diff --git a/mo/src/comparator/moSolNeighborComparator.h b/mo/src/comparator/moSolNeighborComparator.h index 2275a6494..394ef48a3 100644 --- a/mo/src/comparator/moSolNeighborComparator.h +++ b/mo/src/comparator/moSolNeighborComparator.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSolNeighborComparator_h diff --git a/mo/src/continuator/moAverageFitnessNeighborStat.h b/mo/src/continuator/moAverageFitnessNeighborStat.h index 130b96663..9ed17d14c 100644 --- a/mo/src/continuator/moAverageFitnessNeighborStat.h +++ b/mo/src/continuator/moAverageFitnessNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moAverageFitnessNeighborStat_h diff --git a/mo/src/continuator/moBestFitnessStat.h b/mo/src/continuator/moBestFitnessStat.h index 192919c88..f38a63287 100644 --- a/mo/src/continuator/moBestFitnessStat.h +++ b/mo/src/continuator/moBestFitnessStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moBestFitnessStat_h diff --git a/mo/src/continuator/moBestNoImproveContinuator.h b/mo/src/continuator/moBestNoImproveContinuator.h index c14c4b87d..9517139ce 100644 --- a/mo/src/continuator/moBestNoImproveContinuator.h +++ b/mo/src/continuator/moBestNoImproveContinuator.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moBestNoImproveContinuator_h diff --git a/mo/src/continuator/moBestSoFarStat.h b/mo/src/continuator/moBestSoFarStat.h index fa5797139..638763565 100644 --- a/mo/src/continuator/moBestSoFarStat.h +++ b/mo/src/continuator/moBestSoFarStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moBestSoFarStat_h diff --git a/mo/src/continuator/moBooleanStat.h b/mo/src/continuator/moBooleanStat.h index 10fa7008e..ee998ed23 100644 --- a/mo/src/continuator/moBooleanStat.h +++ b/mo/src/continuator/moBooleanStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moBooleanStat_h diff --git a/mo/src/continuator/moCheckpoint.h b/mo/src/continuator/moCheckpoint.h index 37b5cd610..a3fc380d2 100644 --- a/mo/src/continuator/moCheckpoint.h +++ b/mo/src/continuator/moCheckpoint.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moCheckpoint_h diff --git a/mo/src/continuator/moCombinedContinuator.h b/mo/src/continuator/moCombinedContinuator.h index 7533bd4fa..d885f3e8a 100644 --- a/mo/src/continuator/moCombinedContinuator.h +++ b/mo/src/continuator/moCombinedContinuator.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moCombinedContinuator_h diff --git a/mo/src/continuator/moContinuator.h b/mo/src/continuator/moContinuator.h index a58cad718..1f654126b 100644 --- a/mo/src/continuator/moContinuator.h +++ b/mo/src/continuator/moContinuator.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moContinuator_h diff --git a/mo/src/continuator/moCounterMonitorSaver.h b/mo/src/continuator/moCounterMonitorSaver.h index f57e05d2d..772ecffdb 100644 --- a/mo/src/continuator/moCounterMonitorSaver.h +++ b/mo/src/continuator/moCounterMonitorSaver.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moCounterMonitorSaver_h diff --git a/mo/src/continuator/moCounterStat.h b/mo/src/continuator/moCounterStat.h index 14b062784..452401caa 100644 --- a/mo/src/continuator/moCounterStat.h +++ b/mo/src/continuator/moCounterStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moCounterStat_h diff --git a/mo/src/continuator/moDistanceStat.h b/mo/src/continuator/moDistanceStat.h index 06cfe0007..bdff1394c 100644 --- a/mo/src/continuator/moDistanceStat.h +++ b/mo/src/continuator/moDistanceStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moDistanceStat_h diff --git a/mo/src/continuator/moEvalsContinuator.h b/mo/src/continuator/moEvalsContinuator.h index 7c9f4e902..bb2b5d6be 100644 --- a/mo/src/continuator/moEvalsContinuator.h +++ b/mo/src/continuator/moEvalsContinuator.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moEvalsContinuator_h diff --git a/mo/src/continuator/moFitContinuator.h b/mo/src/continuator/moFitContinuator.h index 03ac6b686..79e95d409 100644 --- a/mo/src/continuator/moFitContinuator.h +++ b/mo/src/continuator/moFitContinuator.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moFitContinuator_h diff --git a/mo/src/continuator/moFitnessStat.h b/mo/src/continuator/moFitnessStat.h index d4f2f4bea..a94921edb 100644 --- a/mo/src/continuator/moFitnessStat.h +++ b/mo/src/continuator/moFitnessStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moFitnessStat_h diff --git a/mo/src/continuator/moFullEvalContinuator.h b/mo/src/continuator/moFullEvalContinuator.h index 168eb5bc1..af963041f 100644 --- a/mo/src/continuator/moFullEvalContinuator.h +++ b/mo/src/continuator/moFullEvalContinuator.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moFullEvalContinuator_h diff --git a/mo/src/continuator/moIterContinuator.h b/mo/src/continuator/moIterContinuator.h index ff3056062..ecf622cd0 100644 --- a/mo/src/continuator/moIterContinuator.h +++ b/mo/src/continuator/moIterContinuator.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moIterContinuator_h diff --git a/mo/src/continuator/moMaxNeighborStat.h b/mo/src/continuator/moMaxNeighborStat.h index 94f9cc137..f7785576a 100644 --- a/mo/src/continuator/moMaxNeighborStat.h +++ b/mo/src/continuator/moMaxNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moMaxNeighborStat_h diff --git a/mo/src/continuator/moMedianNeighborStat.h b/mo/src/continuator/moMedianNeighborStat.h index 241c1adce..ee27be850 100644 --- a/mo/src/continuator/moMedianNeighborStat.h +++ b/mo/src/continuator/moMedianNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moMedianNeighborStat_h diff --git a/mo/src/continuator/moMinNeighborStat.h b/mo/src/continuator/moMinNeighborStat.h index f77d91973..c626aecd0 100644 --- a/mo/src/continuator/moMinNeighborStat.h +++ b/mo/src/continuator/moMinNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moMinNeighborStat_h diff --git a/mo/src/continuator/moMinusOneCounterStat.h b/mo/src/continuator/moMinusOneCounterStat.h index 0d6fd1f3a..d2c61d1f0 100644 --- a/mo/src/continuator/moMinusOneCounterStat.h +++ b/mo/src/continuator/moMinusOneCounterStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moMinusOneCounterStat_h diff --git a/mo/src/continuator/moNbInfNeighborStat.h b/mo/src/continuator/moNbInfNeighborStat.h index 5699b5268..3da2ee2c2 100644 --- a/mo/src/continuator/moNbInfNeighborStat.h +++ b/mo/src/continuator/moNbInfNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moNbInfNeighborStat_h diff --git a/mo/src/continuator/moNbSupNeighborStat.h b/mo/src/continuator/moNbSupNeighborStat.h index d81e07591..4bdc9e972 100644 --- a/mo/src/continuator/moNbSupNeighborStat.h +++ b/mo/src/continuator/moNbSupNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moNbSupNeighborStat_h diff --git a/mo/src/continuator/moNeighborBestStat.h b/mo/src/continuator/moNeighborBestStat.h index f7e607985..6427f1888 100644 --- a/mo/src/continuator/moNeighborBestStat.h +++ b/mo/src/continuator/moNeighborBestStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moNeighborBestStat_h diff --git a/mo/src/continuator/moNeighborEvalContinuator.h b/mo/src/continuator/moNeighborEvalContinuator.h index bcfd0563a..7e91d0c94 100644 --- a/mo/src/continuator/moNeighborEvalContinuator.h +++ b/mo/src/continuator/moNeighborEvalContinuator.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moNeighborEvalContinuator_h diff --git a/mo/src/continuator/moNeighborFitnessStat.h b/mo/src/continuator/moNeighborFitnessStat.h index 5cbe3351d..5620842cf 100644 --- a/mo/src/continuator/moNeighborFitnessStat.h +++ b/mo/src/continuator/moNeighborFitnessStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moNeighborFitnessStat_h diff --git a/mo/src/continuator/moNeighborhoodStat.h b/mo/src/continuator/moNeighborhoodStat.h index 6a6e506cc..1c815b541 100644 --- a/mo/src/continuator/moNeighborhoodStat.h +++ b/mo/src/continuator/moNeighborhoodStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moNeighborhoodStat_h diff --git a/mo/src/continuator/moNeutralDegreeNeighborStat.h b/mo/src/continuator/moNeutralDegreeNeighborStat.h index 1cbe47321..eec44603e 100644 --- a/mo/src/continuator/moNeutralDegreeNeighborStat.h +++ b/mo/src/continuator/moNeutralDegreeNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moNeutralDegreeNeighborStat_h diff --git a/mo/src/continuator/moQ1NeighborStat.h b/mo/src/continuator/moQ1NeighborStat.h index 2ee9bd294..fee4fe766 100644 --- a/mo/src/continuator/moQ1NeighborStat.h +++ b/mo/src/continuator/moQ1NeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moQ1NeighborStat_h diff --git a/mo/src/continuator/moQ3NeighborStat.h b/mo/src/continuator/moQ3NeighborStat.h index 7e4768e57..8a2bb3c54 100644 --- a/mo/src/continuator/moQ3NeighborStat.h +++ b/mo/src/continuator/moQ3NeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moQ3NeighborStat_h diff --git a/mo/src/continuator/moQuartilesNeighborStat.h b/mo/src/continuator/moQuartilesNeighborStat.h index 77ba3e3b7..9b63454db 100644 --- a/mo/src/continuator/moQuartilesNeighborStat.h +++ b/mo/src/continuator/moQuartilesNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moQuartilesNeighborStat_h diff --git a/mo/src/continuator/moSecondMomentNeighborStat.h b/mo/src/continuator/moSecondMomentNeighborStat.h index ba99c6d48..81774cea9 100644 --- a/mo/src/continuator/moSecondMomentNeighborStat.h +++ b/mo/src/continuator/moSecondMomentNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moSecondMomentNeighborStat_h diff --git a/mo/src/continuator/moSizeNeighborStat.h b/mo/src/continuator/moSizeNeighborStat.h index 5ac3caf19..edc55f8ae 100644 --- a/mo/src/continuator/moSizeNeighborStat.h +++ b/mo/src/continuator/moSizeNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moSizeNeighborStat_h diff --git a/mo/src/continuator/moSolutionStat.h b/mo/src/continuator/moSolutionStat.h index 90baafd44..303957239 100644 --- a/mo/src/continuator/moSolutionStat.h +++ b/mo/src/continuator/moSolutionStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moSolutionStat_h diff --git a/mo/src/continuator/moStat.h b/mo/src/continuator/moStat.h index b986166f3..97cba5b34 100644 --- a/mo/src/continuator/moStat.h +++ b/mo/src/continuator/moStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moStat_h diff --git a/mo/src/continuator/moStatBase.h b/mo/src/continuator/moStatBase.h index f0553ee1f..10951498f 100644 --- a/mo/src/continuator/moStatBase.h +++ b/mo/src/continuator/moStatBase.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moStatBase_h diff --git a/mo/src/continuator/moStatFromStat.h b/mo/src/continuator/moStatFromStat.h index 2dea43ce1..b1e142e4a 100644 --- a/mo/src/continuator/moStatFromStat.h +++ b/mo/src/continuator/moStatFromStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moStatFromStat_h diff --git a/mo/src/continuator/moStdFitnessNeighborStat.h b/mo/src/continuator/moStdFitnessNeighborStat.h index 5e4098a8d..591d3450a 100644 --- a/mo/src/continuator/moStdFitnessNeighborStat.h +++ b/mo/src/continuator/moStdFitnessNeighborStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moStdFitnessNeighborStat_h diff --git a/mo/src/continuator/moTimeContinuator.h b/mo/src/continuator/moTimeContinuator.h index 67804dda9..c51a19163 100644 --- a/mo/src/continuator/moTimeContinuator.h +++ b/mo/src/continuator/moTimeContinuator.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moTimeContinuator_h diff --git a/mo/src/continuator/moTrueContinuator.h b/mo/src/continuator/moTrueContinuator.h index 020e138a5..e0e5442f8 100644 --- a/mo/src/continuator/moTrueContinuator.h +++ b/mo/src/continuator/moTrueContinuator.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moTrueContinuator_h diff --git a/mo/src/continuator/moUnsignedStat.h b/mo/src/continuator/moUnsignedStat.h index 8c5122539..b92fcedb8 100644 --- a/mo/src/continuator/moUnsignedStat.h +++ b/mo/src/continuator/moUnsignedStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moUnsignedStat_h diff --git a/mo/src/continuator/moUpdater.h b/mo/src/continuator/moUpdater.h index 0be846d38..272c57df6 100644 --- a/mo/src/continuator/moUpdater.h +++ b/mo/src/continuator/moUpdater.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moUpdater_h diff --git a/mo/src/continuator/moValueParamContinuator.h b/mo/src/continuator/moValueParamContinuator.h index 3fade146c..facf05ed5 100644 --- a/mo/src/continuator/moValueParamContinuator.h +++ b/mo/src/continuator/moValueParamContinuator.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moValueParamContinuator_h diff --git a/mo/src/continuator/moValueStat.h b/mo/src/continuator/moValueStat.h index 1e9bf06a9..76e6fa08a 100644 --- a/mo/src/continuator/moValueStat.h +++ b/mo/src/continuator/moValueStat.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moValueStat_h diff --git a/mo/src/continuator/moVectorMonitor.h b/mo/src/continuator/moVectorMonitor.h index 30c331771..c39486b2a 100644 --- a/mo/src/continuator/moVectorMonitor.h +++ b/mo/src/continuator/moVectorMonitor.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moVectorMonitor_h diff --git a/mo/src/coolingSchedule/moCoolingSchedule.h b/mo/src/coolingSchedule/moCoolingSchedule.h index 9b65cf1b5..e0912da3a 100644 --- a/mo/src/coolingSchedule/moCoolingSchedule.h +++ b/mo/src/coolingSchedule/moCoolingSchedule.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moCoolingSchedule_h diff --git a/mo/src/coolingSchedule/moDynSpanCoolingSchedule.h b/mo/src/coolingSchedule/moDynSpanCoolingSchedule.h index e92992e87..ccda9aa46 100644 --- a/mo/src/coolingSchedule/moDynSpanCoolingSchedule.h +++ b/mo/src/coolingSchedule/moDynSpanCoolingSchedule.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDynSpanCoolingSchedule_h diff --git a/mo/src/coolingSchedule/moSimpleCoolingSchedule.h b/mo/src/coolingSchedule/moSimpleCoolingSchedule.h index 940dd258a..cb1821215 100644 --- a/mo/src/coolingSchedule/moSimpleCoolingSchedule.h +++ b/mo/src/coolingSchedule/moSimpleCoolingSchedule.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSimpleCoolingSchedule_h diff --git a/mo/src/eval/moDoubleIncrEvaluation.h b/mo/src/eval/moDoubleIncrEvaluation.h index 2f1ac305c..2b0c4584d 100644 --- a/mo/src/eval/moDoubleIncrEvaluation.h +++ b/mo/src/eval/moDoubleIncrEvaluation.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moDoubleIncrEvaluation_H diff --git a/mo/src/eval/moDoubleIncrNeighborhoodEval.h b/mo/src/eval/moDoubleIncrNeighborhoodEval.h index 61ef09176..91099552f 100644 --- a/mo/src/eval/moDoubleIncrNeighborhoodEval.h +++ b/mo/src/eval/moDoubleIncrNeighborhoodEval.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moDoubleIncrNeighborhoodEval_H diff --git a/mo/src/eval/moDummyEval.h b/mo/src/eval/moDummyEval.h index ac855e0fc..eb486319b 100644 --- a/mo/src/eval/moDummyEval.h +++ b/mo/src/eval/moDummyEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDummyEval_h diff --git a/mo/src/eval/moEval.h b/mo/src/eval/moEval.h index 835a8ae8e..bedbe560e 100644 --- a/mo/src/eval/moEval.h +++ b/mo/src/eval/moEval.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moEval_H diff --git a/mo/src/eval/moEvalCounter.h b/mo/src/eval/moEvalCounter.h index e12949b1f..d99e41597 100644 --- a/mo/src/eval/moEvalCounter.h +++ b/mo/src/eval/moEvalCounter.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moEvalCounter_h diff --git a/mo/src/eval/moFullEvalByCopy.h b/mo/src/eval/moFullEvalByCopy.h index 701a7b951..6449750b1 100644 --- a/mo/src/eval/moFullEvalByCopy.h +++ b/mo/src/eval/moFullEvalByCopy.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moFullEvalByCopy_H diff --git a/mo/src/eval/moFullEvalByModif.h b/mo/src/eval/moFullEvalByModif.h index a4cb9369a..6edc0fac0 100644 --- a/mo/src/eval/moFullEvalByModif.h +++ b/mo/src/eval/moFullEvalByModif.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moFullEvalByModif_H diff --git a/mo/src/eval/moNeighborhoodEvaluation.h b/mo/src/eval/moNeighborhoodEvaluation.h index 92274c133..5909fa5ca 100644 --- a/mo/src/eval/moNeighborhoodEvaluation.h +++ b/mo/src/eval/moNeighborhoodEvaluation.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moNeighborhoodEvaluation_H diff --git a/mo/src/explorer/moDummyExplorer.h b/mo/src/explorer/moDummyExplorer.h index ae6a293cb..5245e580e 100644 --- a/mo/src/explorer/moDummyExplorer.h +++ b/mo/src/explorer/moDummyExplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDummyExplorer_h diff --git a/mo/src/explorer/moFirstImprHCexplorer.h b/mo/src/explorer/moFirstImprHCexplorer.h index 530f2953a..22cf727d6 100644 --- a/mo/src/explorer/moFirstImprHCexplorer.h +++ b/mo/src/explorer/moFirstImprHCexplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moFirstImprHCexplorer_h diff --git a/mo/src/explorer/moILSexplorer.h b/mo/src/explorer/moILSexplorer.h index 89d7bfd47..e8a16121c 100644 --- a/mo/src/explorer/moILSexplorer.h +++ b/mo/src/explorer/moILSexplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moILSexplorer_h diff --git a/mo/src/explorer/moMetropolisHastingExplorer.h b/mo/src/explorer/moMetropolisHastingExplorer.h index 9716469b9..28cc10cf1 100644 --- a/mo/src/explorer/moMetropolisHastingExplorer.h +++ b/mo/src/explorer/moMetropolisHastingExplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moMetropolisHastingExplorer_h diff --git a/mo/src/explorer/moNeighborhoodExplorer.h b/mo/src/explorer/moNeighborhoodExplorer.h index 2db8623ac..c9d33f870 100644 --- a/mo/src/explorer/moNeighborhoodExplorer.h +++ b/mo/src/explorer/moNeighborhoodExplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _neighborhoodExplorer_h diff --git a/mo/src/explorer/moNeutralHCexplorer.h b/mo/src/explorer/moNeutralHCexplorer.h index 2eefa797d..1017cd6c7 100644 --- a/mo/src/explorer/moNeutralHCexplorer.h +++ b/mo/src/explorer/moNeutralHCexplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moNeutralHCexplorer_h diff --git a/mo/src/explorer/moRandomBestHCexplorer.h b/mo/src/explorer/moRandomBestHCexplorer.h index bac6cc66b..d672d1a16 100644 --- a/mo/src/explorer/moRandomBestHCexplorer.h +++ b/mo/src/explorer/moRandomBestHCexplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRandomBestHCexplorer_h diff --git a/mo/src/explorer/moRandomNeutralWalkExplorer.h b/mo/src/explorer/moRandomNeutralWalkExplorer.h index 521c357e6..8d5114943 100644 --- a/mo/src/explorer/moRandomNeutralWalkExplorer.h +++ b/mo/src/explorer/moRandomNeutralWalkExplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRandomNeutralWalkexplorer_h diff --git a/mo/src/explorer/moRandomSearchExplorer.h b/mo/src/explorer/moRandomSearchExplorer.h index f8b81d00c..0d65c5173 100644 --- a/mo/src/explorer/moRandomSearchExplorer.h +++ b/mo/src/explorer/moRandomSearchExplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRandomSearchexplorer_h diff --git a/mo/src/explorer/moRandomWalkExplorer.h b/mo/src/explorer/moRandomWalkExplorer.h index d0a84fe29..05ab7dcef 100644 --- a/mo/src/explorer/moRandomWalkExplorer.h +++ b/mo/src/explorer/moRandomWalkExplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRandomWalkexplorer_h diff --git a/mo/src/explorer/moSAexplorer.h b/mo/src/explorer/moSAexplorer.h index 132d584f9..0529fadd1 100644 --- a/mo/src/explorer/moSAexplorer.h +++ b/mo/src/explorer/moSAexplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSAexplorer_h diff --git a/mo/src/explorer/moSimpleHCexplorer.h b/mo/src/explorer/moSimpleHCexplorer.h index ee1cded53..8ff0aad6a 100644 --- a/mo/src/explorer/moSimpleHCexplorer.h +++ b/mo/src/explorer/moSimpleHCexplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSimpleHCexplorer_h diff --git a/mo/src/explorer/moTSexplorer.h b/mo/src/explorer/moTSexplorer.h index 8438d58af..754e5f453 100644 --- a/mo/src/explorer/moTSexplorer.h +++ b/mo/src/explorer/moTSexplorer.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moTSexplorer_h #define _moTSexplorer_h diff --git a/mo/src/explorer/moVNSexplorer.h b/mo/src/explorer/moVNSexplorer.h index b7633c26e..8c025bbe4 100644 --- a/mo/src/explorer/moVNSexplorer.h +++ b/mo/src/explorer/moVNSexplorer.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moVNSexplorer_h diff --git a/mo/src/memory/moAspiration.h b/mo/src/memory/moAspiration.h index 7a9e338e0..243e3682f 100644 --- a/mo/src/memory/moAspiration.h +++ b/mo/src/memory/moAspiration.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ diff --git a/mo/src/memory/moBestImprAspiration.h b/mo/src/memory/moBestImprAspiration.h index b83c5d527..c7f3d08d4 100644 --- a/mo/src/memory/moBestImprAspiration.h +++ b/mo/src/memory/moBestImprAspiration.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ diff --git a/mo/src/memory/moCountMoveMemory.h b/mo/src/memory/moCountMoveMemory.h index eb6ae6825..16ebde8fd 100644 --- a/mo/src/memory/moCountMoveMemory.h +++ b/mo/src/memory/moCountMoveMemory.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moCountMoveMemory_h diff --git a/mo/src/memory/moDiversification.h b/mo/src/memory/moDiversification.h index 5df67a3fe..6541bbfdb 100644 --- a/mo/src/memory/moDiversification.h +++ b/mo/src/memory/moDiversification.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDiversification_h diff --git a/mo/src/memory/moDummyDiversification.h b/mo/src/memory/moDummyDiversification.h index 72cd1f686..fcbf45748 100644 --- a/mo/src/memory/moDummyDiversification.h +++ b/mo/src/memory/moDummyDiversification.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDummyDiversification_h diff --git a/mo/src/memory/moDummyIntensification.h b/mo/src/memory/moDummyIntensification.h index d6fd9ef3d..685abce8a 100644 --- a/mo/src/memory/moDummyIntensification.h +++ b/mo/src/memory/moDummyIntensification.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDummyIntensification_h diff --git a/mo/src/memory/moDummyMemory.h b/mo/src/memory/moDummyMemory.h index f176cb1bc..a6b9f1c94 100644 --- a/mo/src/memory/moDummyMemory.h +++ b/mo/src/memory/moDummyMemory.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDummyMemory_h diff --git a/mo/src/memory/moIndexedVectorTabuList.h b/mo/src/memory/moIndexedVectorTabuList.h index b56742602..9a66fcb75 100644 --- a/mo/src/memory/moIndexedVectorTabuList.h +++ b/mo/src/memory/moIndexedVectorTabuList.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moIndexedVectorTabuList_h diff --git a/mo/src/memory/moIntensification.h b/mo/src/memory/moIntensification.h index 44d6c1bc3..34d128c4e 100644 --- a/mo/src/memory/moIntensification.h +++ b/mo/src/memory/moIntensification.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moIntensification_h diff --git a/mo/src/memory/moMonOpDiversification.h b/mo/src/memory/moMonOpDiversification.h index 46fa8547b..09352ccf0 100644 --- a/mo/src/memory/moMonOpDiversification.h +++ b/mo/src/memory/moMonOpDiversification.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moMonOpDiversification_h diff --git a/mo/src/memory/moNeighborVectorTabuList.h b/mo/src/memory/moNeighborVectorTabuList.h index 5e8f8eec7..a66540b7a 100644 --- a/mo/src/memory/moNeighborVectorTabuList.h +++ b/mo/src/memory/moNeighborVectorTabuList.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moNeighborVectorTabuList_h diff --git a/mo/src/memory/moRndIndexedVectorTabuList.h b/mo/src/memory/moRndIndexedVectorTabuList.h index dd6f11765..796c409bf 100644 --- a/mo/src/memory/moRndIndexedVectorTabuList.h +++ b/mo/src/memory/moRndIndexedVectorTabuList.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRndIndexedVectorTabuList_h diff --git a/mo/src/memory/moSolVectorTabuList.h b/mo/src/memory/moSolVectorTabuList.h index 31c57c0f6..25c6440a7 100644 --- a/mo/src/memory/moSolVectorTabuList.h +++ b/mo/src/memory/moSolVectorTabuList.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSolVectorTabuList_h diff --git a/mo/src/memory/moTabuList.h b/mo/src/memory/moTabuList.h index 018996e8a..3ab9c3dc1 100644 --- a/mo/src/memory/moTabuList.h +++ b/mo/src/memory/moTabuList.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moTabuList_h diff --git a/mo/src/mo.h b/mo/src/mo.h index f936b646d..61b164663 100755 --- a/mo/src/mo.h +++ b/mo/src/mo.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _newmo_h diff --git a/mo/src/neighborhood/moBackableNeighbor.h b/mo/src/neighborhood/moBackableNeighbor.h index 4a851c451..581f3cbc3 100644 --- a/mo/src/neighborhood/moBackableNeighbor.h +++ b/mo/src/neighborhood/moBackableNeighbor.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _BackableNeighbor_h diff --git a/mo/src/neighborhood/moBackwardVectorVNSelection.h b/mo/src/neighborhood/moBackwardVectorVNSelection.h index a47b31e30..ab20d8e58 100644 --- a/mo/src/neighborhood/moBackwardVectorVNSelection.h +++ b/mo/src/neighborhood/moBackwardVectorVNSelection.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moBackwardVectorVNSelection_h diff --git a/mo/src/neighborhood/moDummyNeighbor.h b/mo/src/neighborhood/moDummyNeighbor.h index e68b2b079..5b522c1ac 100644 --- a/mo/src/neighborhood/moDummyNeighbor.h +++ b/mo/src/neighborhood/moDummyNeighbor.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDummyNeighbor_h diff --git a/mo/src/neighborhood/moDummyNeighborhood.h b/mo/src/neighborhood/moDummyNeighborhood.h index eda0ae490..c9a77617a 100644 --- a/mo/src/neighborhood/moDummyNeighborhood.h +++ b/mo/src/neighborhood/moDummyNeighborhood.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moDummyNeighborhood_h diff --git a/mo/src/neighborhood/moEvaluatedNeighborhood.h b/mo/src/neighborhood/moEvaluatedNeighborhood.h index 52f1f54d8..bde4d4386 100644 --- a/mo/src/neighborhood/moEvaluatedNeighborhood.h +++ b/mo/src/neighborhood/moEvaluatedNeighborhood.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moEvaluatedNeighborhood_h diff --git a/mo/src/neighborhood/moForwardVectorVNSelection.h b/mo/src/neighborhood/moForwardVectorVNSelection.h index d469cf6be..6ac605a86 100644 --- a/mo/src/neighborhood/moForwardVectorVNSelection.h +++ b/mo/src/neighborhood/moForwardVectorVNSelection.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moForwardVectorVNSelection_h diff --git a/mo/src/neighborhood/moIndexNeighbor.h b/mo/src/neighborhood/moIndexNeighbor.h index 880c08812..bfb685041 100644 --- a/mo/src/neighborhood/moIndexNeighbor.h +++ b/mo/src/neighborhood/moIndexNeighbor.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _IndexNeighbor_h diff --git a/mo/src/neighborhood/moIndexNeighborhood.h b/mo/src/neighborhood/moIndexNeighborhood.h index 83d06b267..2cd366feb 100644 --- a/mo/src/neighborhood/moIndexNeighborhood.h +++ b/mo/src/neighborhood/moIndexNeighborhood.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moIndexNeighborhood_h diff --git a/mo/src/neighborhood/moNeighbor.h b/mo/src/neighborhood/moNeighbor.h index 707a6a126..6c035201e 100644 --- a/mo/src/neighborhood/moNeighbor.h +++ b/mo/src/neighborhood/moNeighbor.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moNeighbor_h diff --git a/mo/src/neighborhood/moNeighborhood.h b/mo/src/neighborhood/moNeighborhood.h index 60d11c1f2..6c61094dd 100644 --- a/mo/src/neighborhood/moNeighborhood.h +++ b/mo/src/neighborhood/moNeighborhood.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moNeighborhood_h diff --git a/mo/src/neighborhood/moOrderNeighborhood.h b/mo/src/neighborhood/moOrderNeighborhood.h index 316ba8cba..17f206e48 100644 --- a/mo/src/neighborhood/moOrderNeighborhood.h +++ b/mo/src/neighborhood/moOrderNeighborhood.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moOrderNeighborhood_h diff --git a/mo/src/neighborhood/moRndNeighborhood.h b/mo/src/neighborhood/moRndNeighborhood.h index 9c7ec2d22..aa95be3b2 100644 --- a/mo/src/neighborhood/moRndNeighborhood.h +++ b/mo/src/neighborhood/moRndNeighborhood.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRndNeighborhood_h diff --git a/mo/src/neighborhood/moRndVectorVNSelection.h b/mo/src/neighborhood/moRndVectorVNSelection.h index 86a9d00b7..a9b6ce7f9 100644 --- a/mo/src/neighborhood/moRndVectorVNSelection.h +++ b/mo/src/neighborhood/moRndVectorVNSelection.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRndVectorVNSelection_h diff --git a/mo/src/neighborhood/moRndWithReplNeighborhood.h b/mo/src/neighborhood/moRndWithReplNeighborhood.h index d66b72ac8..8fe330679 100644 --- a/mo/src/neighborhood/moRndWithReplNeighborhood.h +++ b/mo/src/neighborhood/moRndWithReplNeighborhood.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRndWithReplNeighborhood_h diff --git a/mo/src/neighborhood/moRndWithoutReplNeighborhood.h b/mo/src/neighborhood/moRndWithoutReplNeighborhood.h index dfa057a28..dd6adad0d 100644 --- a/mo/src/neighborhood/moRndWithoutReplNeighborhood.h +++ b/mo/src/neighborhood/moRndWithoutReplNeighborhood.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRndWithoutReplNeighborhood_h diff --git a/mo/src/neighborhood/moVariableNeighborhoodSelection.h b/mo/src/neighborhood/moVariableNeighborhoodSelection.h index 99af9a98d..1709e76ac 100644 --- a/mo/src/neighborhood/moVariableNeighborhoodSelection.h +++ b/mo/src/neighborhood/moVariableNeighborhoodSelection.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moVariableNeighborhoodSelection_h diff --git a/mo/src/neighborhood/moVectorVNSelection.h b/mo/src/neighborhood/moVectorVNSelection.h index 3070e0e9a..a7f0c1492 100644 --- a/mo/src/neighborhood/moVectorVNSelection.h +++ b/mo/src/neighborhood/moVectorVNSelection.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moVectorVNSelection_h diff --git a/mo/src/perturb/moLocalSearchInit.h b/mo/src/perturb/moLocalSearchInit.h index d91c5c719..525e0767e 100644 --- a/mo/src/perturb/moLocalSearchInit.h +++ b/mo/src/perturb/moLocalSearchInit.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moLocalSearchInit_h diff --git a/mo/src/perturb/moMonOpPerturb.h b/mo/src/perturb/moMonOpPerturb.h index b043a99e9..f1568556d 100644 --- a/mo/src/perturb/moMonOpPerturb.h +++ b/mo/src/perturb/moMonOpPerturb.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moMonOpPerturb_h diff --git a/mo/src/perturb/moNeighborhoodPerturb.h b/mo/src/perturb/moNeighborhoodPerturb.h index fe66bdbb9..f815aa621 100644 --- a/mo/src/perturb/moNeighborhoodPerturb.h +++ b/mo/src/perturb/moNeighborhoodPerturb.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moNeighborhoodPerturb_h diff --git a/mo/src/perturb/moPerturbation.h b/mo/src/perturb/moPerturbation.h index 46fb9b0b9..3cf096f99 100644 --- a/mo/src/perturb/moPerturbation.h +++ b/mo/src/perturb/moPerturbation.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moPertubation_h diff --git a/mo/src/perturb/moRestartPerturb.h b/mo/src/perturb/moRestartPerturb.h index c1b4b78ba..e17290a36 100644 --- a/mo/src/perturb/moRestartPerturb.h +++ b/mo/src/perturb/moRestartPerturb.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRestartPerturb_h diff --git a/mo/src/perturb/moSolInit.h b/mo/src/perturb/moSolInit.h index 8707d47fa..dd3da2b33 100644 --- a/mo/src/perturb/moSolInit.h +++ b/mo/src/perturb/moSolInit.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSolInit_h diff --git a/mo/src/problems/bitString/moBitFlipNeighborhood.h b/mo/src/problems/bitString/moBitFlipNeighborhood.h index dbbe05c26..94529ccb1 100644 --- a/mo/src/problems/bitString/moBitFlipNeighborhood.h +++ b/mo/src/problems/bitString/moBitFlipNeighborhood.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moBitFlipNeighborhood_h diff --git a/mo/src/problems/bitString/moBitNeighbor.h b/mo/src/problems/bitString/moBitNeighbor.h index 87f124c44..50083f8c6 100644 --- a/mo/src/problems/bitString/moBitNeighbor.h +++ b/mo/src/problems/bitString/moBitNeighbor.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _bitNeighbor_h diff --git a/mo/src/problems/bitString/moBitsNeighbor.h b/mo/src/problems/bitString/moBitsNeighbor.h index e0f1363f1..b9ea878e8 100644 --- a/mo/src/problems/bitString/moBitsNeighbor.h +++ b/mo/src/problems/bitString/moBitsNeighbor.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moBitsNeighbor_h diff --git a/mo/src/problems/bitString/moBitsNeighborhood.h b/mo/src/problems/bitString/moBitsNeighborhood.h index 2d4557f2f..716586e27 100644 --- a/mo/src/problems/bitString/moBitsNeighborhood.h +++ b/mo/src/problems/bitString/moBitsNeighborhood.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moBitsNeighborhood_h diff --git a/mo/src/problems/bitString/moBitsWithReplNeighborhood.h b/mo/src/problems/bitString/moBitsWithReplNeighborhood.h index 34d2a9623..90d355cd5 100644 --- a/mo/src/problems/bitString/moBitsWithReplNeighborhood.h +++ b/mo/src/problems/bitString/moBitsWithReplNeighborhood.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moBitsWithReplNeighborhood_h diff --git a/mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h b/mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h index 34dad414f..35fbe3930 100644 --- a/mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h +++ b/mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moBitsWithoutReplNeighborhood_h diff --git a/mo/src/problems/eval/moMaxSATincrEval.h b/mo/src/problems/eval/moMaxSATincrEval.h index 69dfbdb2e..9f148aef4 100644 --- a/mo/src/problems/eval/moMaxSATincrEval.h +++ b/mo/src/problems/eval/moMaxSATincrEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moMaxSATincrEval_h diff --git a/mo/src/problems/eval/moNKlandscapesBitsIncrEval.h b/mo/src/problems/eval/moNKlandscapesBitsIncrEval.h index c9a0ff0f3..ec0fab142 100644 --- a/mo/src/problems/eval/moNKlandscapesBitsIncrEval.h +++ b/mo/src/problems/eval/moNKlandscapesBitsIncrEval.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moNKlandscapesBitsIncrEval_H diff --git a/mo/src/problems/eval/moNKlandscapesIncrEval.h b/mo/src/problems/eval/moNKlandscapesIncrEval.h index a253c7c14..1b391b43a 100644 --- a/mo/src/problems/eval/moNKlandscapesIncrEval.h +++ b/mo/src/problems/eval/moNKlandscapesIncrEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moNKlandscapesIncrEval_H diff --git a/mo/src/problems/eval/moOneMaxBitsIncrEval.h b/mo/src/problems/eval/moOneMaxBitsIncrEval.h index 5758d3c29..fb1819810 100644 --- a/mo/src/problems/eval/moOneMaxBitsIncrEval.h +++ b/mo/src/problems/eval/moOneMaxBitsIncrEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moOneMaxBitsIncrEval_H diff --git a/mo/src/problems/eval/moOneMaxIncrEval.h b/mo/src/problems/eval/moOneMaxIncrEval.h index c97b096e2..c13b8269c 100644 --- a/mo/src/problems/eval/moOneMaxIncrEval.h +++ b/mo/src/problems/eval/moOneMaxIncrEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moOneMaxIncrEval_H diff --git a/mo/src/problems/eval/moQAPIncrEval.h b/mo/src/problems/eval/moQAPIncrEval.h index 16494e4b0..aa714a161 100644 --- a/mo/src/problems/eval/moQAPIncrEval.h +++ b/mo/src/problems/eval/moQAPIncrEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moQAPIncrEval_H diff --git a/mo/src/problems/eval/moRoyalRoadIncrEval.h b/mo/src/problems/eval/moRoyalRoadIncrEval.h index 3296ab25f..c51bbf9ec 100644 --- a/mo/src/problems/eval/moRoyalRoadIncrEval.h +++ b/mo/src/problems/eval/moRoyalRoadIncrEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moRoyalRoadIncrEval_H diff --git a/mo/src/problems/eval/moUBQPBitsIncrEval.h b/mo/src/problems/eval/moUBQPBitsIncrEval.h index d6a55c3d7..d0d9ce691 100644 --- a/mo/src/problems/eval/moUBQPBitsIncrEval.h +++ b/mo/src/problems/eval/moUBQPBitsIncrEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moUBQPBitsIncrEval_H diff --git a/mo/src/problems/eval/moUBQPSimpleIncrEval.h b/mo/src/problems/eval/moUBQPSimpleIncrEval.h index 78e6be0f5..87c253d37 100644 --- a/mo/src/problems/eval/moUBQPSimpleIncrEval.h +++ b/mo/src/problems/eval/moUBQPSimpleIncrEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moUBQPSimpleIncrEval_H diff --git a/mo/src/problems/eval/moUBQPdoubleIncrEvaluation.h b/mo/src/problems/eval/moUBQPdoubleIncrEvaluation.h index d9d149a83..c7523357b 100644 --- a/mo/src/problems/eval/moUBQPdoubleIncrEvaluation.h +++ b/mo/src/problems/eval/moUBQPdoubleIncrEvaluation.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moUBQPdoubleIncrEvaluation_H diff --git a/mo/src/problems/permutation/moIndexedSwapNeighbor.h b/mo/src/problems/permutation/moIndexedSwapNeighbor.h index 4706305f6..3a77412a8 100644 --- a/mo/src/problems/permutation/moIndexedSwapNeighbor.h +++ b/mo/src/problems/permutation/moIndexedSwapNeighbor.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moIndexedSwapNeighbor_h diff --git a/mo/src/problems/permutation/moShiftNeighbor.h b/mo/src/problems/permutation/moShiftNeighbor.h index 13eba1849..c0004f2a7 100644 --- a/mo/src/problems/permutation/moShiftNeighbor.h +++ b/mo/src/problems/permutation/moShiftNeighbor.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moShiftNeighbor_h diff --git a/mo/src/problems/permutation/moSwapNeighbor.h b/mo/src/problems/permutation/moSwapNeighbor.h index 55dfcbe8d..7c955668e 100644 --- a/mo/src/problems/permutation/moSwapNeighbor.h +++ b/mo/src/problems/permutation/moSwapNeighbor.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSwapNeighbor_h diff --git a/mo/src/problems/permutation/moSwapNeighborhood.h b/mo/src/problems/permutation/moSwapNeighborhood.h index 0ad0f1a2f..e6ae92b7c 100644 --- a/mo/src/problems/permutation/moSwapNeighborhood.h +++ b/mo/src/problems/permutation/moSwapNeighborhood.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moSwapNeighborhood_h diff --git a/mo/src/problems/permutation/moTwoOptExNeighbor.h b/mo/src/problems/permutation/moTwoOptExNeighbor.h index ae82fd45d..7751313c1 100755 --- a/mo/src/problems/permutation/moTwoOptExNeighbor.h +++ b/mo/src/problems/permutation/moTwoOptExNeighbor.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moTwoOptExNeighbor_h diff --git a/mo/src/problems/permutation/moTwoOptExNeighborhood.h b/mo/src/problems/permutation/moTwoOptExNeighborhood.h index 886fbc3de..16d027de1 100755 --- a/mo/src/problems/permutation/moTwoOptExNeighborhood.h +++ b/mo/src/problems/permutation/moTwoOptExNeighborhood.h @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moTwoOptExNeighborhood_h diff --git a/mo/src/sampling/moAdaptiveWalkSampling.h b/mo/src/sampling/moAdaptiveWalkSampling.h index b87b36f49..0aae88f22 100644 --- a/mo/src/sampling/moAdaptiveWalkSampling.h +++ b/mo/src/sampling/moAdaptiveWalkSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moAdaptiveWalkSampling_h diff --git a/mo/src/sampling/moAutocorrelationSampling.h b/mo/src/sampling/moAutocorrelationSampling.h index 3dbeaf954..e36eaee8f 100644 --- a/mo/src/sampling/moAutocorrelationSampling.h +++ b/mo/src/sampling/moAutocorrelationSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moAutocorrelationSampling_h diff --git a/mo/src/sampling/moDensityOfStatesSampling.h b/mo/src/sampling/moDensityOfStatesSampling.h index 571f546de..10c47a9f1 100644 --- a/mo/src/sampling/moDensityOfStatesSampling.h +++ b/mo/src/sampling/moDensityOfStatesSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moDensityOfStatesSampling_h diff --git a/mo/src/sampling/moFDCsampling.h b/mo/src/sampling/moFDCsampling.h index f3ed422c1..80e1c9cd8 100644 --- a/mo/src/sampling/moFDCsampling.h +++ b/mo/src/sampling/moFDCsampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moFDCsampling_h diff --git a/mo/src/sampling/moFitnessCloudSampling.h b/mo/src/sampling/moFitnessCloudSampling.h index 15817555a..8aa42c916 100644 --- a/mo/src/sampling/moFitnessCloudSampling.h +++ b/mo/src/sampling/moFitnessCloudSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moFitnessCloudSampling_h diff --git a/mo/src/sampling/moHillClimberSampling.h b/mo/src/sampling/moHillClimberSampling.h index d6bc45a28..afd1660ba 100644 --- a/mo/src/sampling/moHillClimberSampling.h +++ b/mo/src/sampling/moHillClimberSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moHillClimberSampling_h diff --git a/mo/src/sampling/moMHBestFitnessCloudSampling.h b/mo/src/sampling/moMHBestFitnessCloudSampling.h index ebba8a3b9..50942b5da 100644 --- a/mo/src/sampling/moMHBestFitnessCloudSampling.h +++ b/mo/src/sampling/moMHBestFitnessCloudSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moMHBestFitnessCloudSampling_h diff --git a/mo/src/sampling/moMHRndFitnessCloudSampling.h b/mo/src/sampling/moMHRndFitnessCloudSampling.h index 292d42344..8f4728eac 100644 --- a/mo/src/sampling/moMHRndFitnessCloudSampling.h +++ b/mo/src/sampling/moMHRndFitnessCloudSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moMHRndFitnessCloudSampling_h diff --git a/mo/src/sampling/moNeutralDegreeSampling.h b/mo/src/sampling/moNeutralDegreeSampling.h index 397a3bd43..ff125c682 100644 --- a/mo/src/sampling/moNeutralDegreeSampling.h +++ b/mo/src/sampling/moNeutralDegreeSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moNeutralDegreeSampling_h diff --git a/mo/src/sampling/moNeutralWalkSampling.h b/mo/src/sampling/moNeutralWalkSampling.h index 73eddbb9c..bb48d386b 100644 --- a/mo/src/sampling/moNeutralWalkSampling.h +++ b/mo/src/sampling/moNeutralWalkSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moNeutralWalkSampling_h diff --git a/mo/src/sampling/moRndBestFitnessCloudSampling.h b/mo/src/sampling/moRndBestFitnessCloudSampling.h index 371aead94..259512d9c 100644 --- a/mo/src/sampling/moRndBestFitnessCloudSampling.h +++ b/mo/src/sampling/moRndBestFitnessCloudSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moRndBestFitnessCloudSampling_h diff --git a/mo/src/sampling/moRndRndFitnessCloudSampling.h b/mo/src/sampling/moRndRndFitnessCloudSampling.h index db6ddb984..025c4d011 100644 --- a/mo/src/sampling/moRndRndFitnessCloudSampling.h +++ b/mo/src/sampling/moRndRndFitnessCloudSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moRndRndFitnessCloudSampling_h diff --git a/mo/src/sampling/moSampling.h b/mo/src/sampling/moSampling.h index 93ae19615..f88b09ae6 100644 --- a/mo/src/sampling/moSampling.h +++ b/mo/src/sampling/moSampling.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moSampling_h diff --git a/mo/src/sampling/moStatistics.h b/mo/src/sampling/moStatistics.h index 7c74cbc16..ef673d7fc 100644 --- a/mo/src/sampling/moStatistics.h +++ b/mo/src/sampling/moStatistics.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef moStatistics_h diff --git a/mo/test/moTestClass.h b/mo/test/moTestClass.h index 8e79f174f..6bf7b5b89 100644 --- a/mo/test/moTestClass.h +++ b/mo/test/moTestClass.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moTestClass_h diff --git a/mo/test/t-moAdaptiveWalkSampling.cpp b/mo/test/t-moAdaptiveWalkSampling.cpp index 3bc232096..3df3c76a3 100755 --- a/mo/test/t-moAdaptiveWalkSampling.cpp +++ b/mo/test/t-moAdaptiveWalkSampling.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moAlwaysAcceptCrit.cpp b/mo/test/t-moAlwaysAcceptCrit.cpp index ab50c5f10..8cad20bd5 100644 --- a/mo/test/t-moAlwaysAcceptCrit.cpp +++ b/mo/test/t-moAlwaysAcceptCrit.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moAutocorrelationSampling.cpp b/mo/test/t-moAutocorrelationSampling.cpp index 77733bbd2..5288eb911 100644 --- a/mo/test/t-moAutocorrelationSampling.cpp +++ b/mo/test/t-moAutocorrelationSampling.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moBestImprAspiration.cpp b/mo/test/t-moBestImprAspiration.cpp index cd2de284d..7f1e7268f 100644 --- a/mo/test/t-moBestImprAspiration.cpp +++ b/mo/test/t-moBestImprAspiration.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include #include "moTestClass.h" diff --git a/mo/test/t-moBetterAcceptCrit.cpp b/mo/test/t-moBetterAcceptCrit.cpp index acd528598..72150a644 100644 --- a/mo/test/t-moBetterAcceptCrit.cpp +++ b/mo/test/t-moBetterAcceptCrit.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moBitNeighbor.cpp b/mo/test/t-moBitNeighbor.cpp index 71ac6bca7..3a0a7deb0 100644 --- a/mo/test/t-moBitNeighbor.cpp +++ b/mo/test/t-moBitNeighbor.cpp @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moCheckpoint.cpp b/mo/test/t-moCheckpoint.cpp index e080b9a7b..254813634 100644 --- a/mo/test/t-moCheckpoint.cpp +++ b/mo/test/t-moCheckpoint.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moCombinedContinuator.cpp b/mo/test/t-moCombinedContinuator.cpp index 7cbeb1229..7e297b73f 100644 --- a/mo/test/t-moCombinedContinuator.cpp +++ b/mo/test/t-moCombinedContinuator.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moCountMoveMemory.cpp b/mo/test/t-moCountMoveMemory.cpp index 403970835..421fd18d4 100644 --- a/mo/test/t-moCountMoveMemory.cpp +++ b/mo/test/t-moCountMoveMemory.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moCounterMonitorSaver.cpp b/mo/test/t-moCounterMonitorSaver.cpp index 2672be7f3..0d2a0bf66 100644 --- a/mo/test/t-moCounterMonitorSaver.cpp +++ b/mo/test/t-moCounterMonitorSaver.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moCounterStat.cpp b/mo/test/t-moCounterStat.cpp index 08ce62b8e..c901bee67 100644 --- a/mo/test/t-moCounterStat.cpp +++ b/mo/test/t-moCounterStat.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moDensityOfStatesSampling.cpp b/mo/test/t-moDensityOfStatesSampling.cpp index adc97bb27..03a3464ee 100644 --- a/mo/test/t-moDensityOfStatesSampling.cpp +++ b/mo/test/t-moDensityOfStatesSampling.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moDistanceStat.cpp b/mo/test/t-moDistanceStat.cpp index c14971756..a4f609571 100644 --- a/mo/test/t-moDistanceStat.cpp +++ b/mo/test/t-moDistanceStat.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moDummyEval.cpp b/mo/test/t-moDummyEval.cpp index 5f618b4e5..7419e7850 100644 --- a/mo/test/t-moDummyEval.cpp +++ b/mo/test/t-moDummyEval.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moDummyExplorer.cpp b/mo/test/t-moDummyExplorer.cpp index 8a3791698..5b2df26bb 100644 --- a/mo/test/t-moDummyExplorer.cpp +++ b/mo/test/t-moDummyExplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moDummyLS.cpp b/mo/test/t-moDummyLS.cpp index c1204757f..0e36279ca 100644 --- a/mo/test/t-moDummyLS.cpp +++ b/mo/test/t-moDummyLS.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moDummyMemory.cpp b/mo/test/t-moDummyMemory.cpp index 4dcda2bc1..485ef399a 100644 --- a/mo/test/t-moDummyMemory.cpp +++ b/mo/test/t-moDummyMemory.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moDummyNeighbor.cpp b/mo/test/t-moDummyNeighbor.cpp index cd60ddb01..efffbd9cb 100644 --- a/mo/test/t-moDummyNeighbor.cpp +++ b/mo/test/t-moDummyNeighbor.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moDummyNeighborhood.cpp b/mo/test/t-moDummyNeighborhood.cpp index c38083873..e2ed29cab 100644 --- a/mo/test/t-moDummyNeighborhood.cpp +++ b/mo/test/t-moDummyNeighborhood.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moDynSpanCoolingSchedule.cpp b/mo/test/t-moDynSpanCoolingSchedule.cpp index 7bef4ad59..638c3887b 100755 --- a/mo/test/t-moDynSpanCoolingSchedule.cpp +++ b/mo/test/t-moDynSpanCoolingSchedule.cpp @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moEvalCounter.cpp b/mo/test/t-moEvalCounter.cpp index 000a6d5ba..5a6d72542 100644 --- a/mo/test/t-moEvalCounter.cpp +++ b/mo/test/t-moEvalCounter.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moFDCsampling.cpp b/mo/test/t-moFDCsampling.cpp index 34da40c43..de4b4df10 100644 --- a/mo/test/t-moFDCsampling.cpp +++ b/mo/test/t-moFDCsampling.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moFirstImprHC.cpp b/mo/test/t-moFirstImprHC.cpp index e92984567..784768710 100644 --- a/mo/test/t-moFirstImprHC.cpp +++ b/mo/test/t-moFirstImprHC.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moFirstImprHCexplorer.cpp b/mo/test/t-moFirstImprHCexplorer.cpp index d8b28c3f0..389ec1965 100644 --- a/mo/test/t-moFirstImprHCexplorer.cpp +++ b/mo/test/t-moFirstImprHCexplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moFitContinuator.cpp b/mo/test/t-moFitContinuator.cpp index 34e686444..07130c65f 100644 --- a/mo/test/t-moFitContinuator.cpp +++ b/mo/test/t-moFitContinuator.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moFitnessCloudSampling.cpp b/mo/test/t-moFitnessCloudSampling.cpp index ae2392d5a..96b754676 100644 --- a/mo/test/t-moFitnessCloudSampling.cpp +++ b/mo/test/t-moFitnessCloudSampling.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moFitnessStat.cpp b/mo/test/t-moFitnessStat.cpp index f243d1e19..c3c4da565 100644 --- a/mo/test/t-moFitnessStat.cpp +++ b/mo/test/t-moFitnessStat.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moFullEvalByCopy.cpp b/mo/test/t-moFullEvalByCopy.cpp index b487c6751..7813e1268 100644 --- a/mo/test/t-moFullEvalByCopy.cpp +++ b/mo/test/t-moFullEvalByCopy.cpp @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include "moTestClass.h" diff --git a/mo/test/t-moFullEvalByModif.cpp b/mo/test/t-moFullEvalByModif.cpp index b52813c37..b9e179ca3 100644 --- a/mo/test/t-moFullEvalByModif.cpp +++ b/mo/test/t-moFullEvalByModif.cpp @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include "moTestClass.h" diff --git a/mo/test/t-moFullEvalContinuator.cpp b/mo/test/t-moFullEvalContinuator.cpp index 78164608a..187b1b8ca 100644 --- a/mo/test/t-moFullEvalContinuator.cpp +++ b/mo/test/t-moFullEvalContinuator.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moHillClimberSampling.cpp b/mo/test/t-moHillClimberSampling.cpp index 0dcb6d950..3a7df0875 100644 --- a/mo/test/t-moHillClimberSampling.cpp +++ b/mo/test/t-moHillClimberSampling.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moILS.cpp b/mo/test/t-moILS.cpp index 42f7b3f36..7bed36037 100644 --- a/mo/test/t-moILS.cpp +++ b/mo/test/t-moILS.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moILSexplorer.cpp b/mo/test/t-moILSexplorer.cpp index ae86ac87c..bbc2a7ad4 100644 --- a/mo/test/t-moILSexplorer.cpp +++ b/mo/test/t-moILSexplorer.cpp @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moIndexedVectorTabuList.cpp b/mo/test/t-moIndexedVectorTabuList.cpp index d29b3bc3e..195036288 100755 --- a/mo/test/t-moIndexedVectorTabuList.cpp +++ b/mo/test/t-moIndexedVectorTabuList.cpp @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moIterContinuator.cpp b/mo/test/t-moIterContinuator.cpp index 871ffeb90..6b17679bb 100644 --- a/mo/test/t-moIterContinuator.cpp +++ b/mo/test/t-moIterContinuator.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moLocalSearch.cpp b/mo/test/t-moLocalSearch.cpp index 4d3f3753d..caed7ed85 100644 --- a/mo/test/t-moLocalSearch.cpp +++ b/mo/test/t-moLocalSearch.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moLocalSearchInit.cpp b/mo/test/t-moLocalSearchInit.cpp index 1f23c8724..12f6ccc17 100644 --- a/mo/test/t-moLocalSearchInit.cpp +++ b/mo/test/t-moLocalSearchInit.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moMetropolisHasting.cpp b/mo/test/t-moMetropolisHasting.cpp index 638c64bd8..c4b8f28fe 100644 --- a/mo/test/t-moMetropolisHasting.cpp +++ b/mo/test/t-moMetropolisHasting.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moMetropolisHastingExplorer.cpp b/mo/test/t-moMetropolisHastingExplorer.cpp index 6214465a1..bbafa72f4 100644 --- a/mo/test/t-moMetropolisHastingExplorer.cpp +++ b/mo/test/t-moMetropolisHastingExplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moMinusOneCounterStat.cpp b/mo/test/t-moMinusOneCounterStat.cpp index 567d610bd..68454a8e4 100644 --- a/mo/test/t-moMinusOneCounterStat.cpp +++ b/mo/test/t-moMinusOneCounterStat.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moMonOpDiversification.cpp b/mo/test/t-moMonOpDiversification.cpp index 6c83ec08b..0ee1f6892 100644 --- a/mo/test/t-moMonOpDiversification.cpp +++ b/mo/test/t-moMonOpDiversification.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moMonOpPerturb.cpp b/mo/test/t-moMonOpPerturb.cpp index c56394674..7875333db 100644 --- a/mo/test/t-moMonOpPerturb.cpp +++ b/mo/test/t-moMonOpPerturb.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNKlandscapesIncrEval.cpp b/mo/test/t-moNKlandscapesIncrEval.cpp index cf9df9de1..3d378686a 100644 --- a/mo/test/t-moNKlandscapesIncrEval.cpp +++ b/mo/test/t-moNKlandscapesIncrEval.cpp @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeighbor.cpp b/mo/test/t-moNeighbor.cpp index ddf324941..11bf3fd4a 100644 --- a/mo/test/t-moNeighbor.cpp +++ b/mo/test/t-moNeighbor.cpp @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include "moTestClass.h" diff --git a/mo/test/t-moNeighborBestStat.cpp b/mo/test/t-moNeighborBestStat.cpp index f35f74cdb..fd1b2a29a 100644 --- a/mo/test/t-moNeighborBestStat.cpp +++ b/mo/test/t-moNeighborBestStat.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeighborComparator.cpp b/mo/test/t-moNeighborComparator.cpp index cbdb3e4df..78eb45cdf 100644 --- a/mo/test/t-moNeighborComparator.cpp +++ b/mo/test/t-moNeighborComparator.cpp @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeighborEvalContinuator.cpp b/mo/test/t-moNeighborEvalContinuator.cpp index b2671786d..19d5f4c23 100644 --- a/mo/test/t-moNeighborEvalContinuator.cpp +++ b/mo/test/t-moNeighborEvalContinuator.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeighborFitnessStat.cpp b/mo/test/t-moNeighborFitnessStat.cpp index a85408c09..f2c882a57 100644 --- a/mo/test/t-moNeighborFitnessStat.cpp +++ b/mo/test/t-moNeighborFitnessStat.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeighborVectorTabuList.cpp b/mo/test/t-moNeighborVectorTabuList.cpp index 097966002..5808e61f1 100644 --- a/mo/test/t-moNeighborVectorTabuList.cpp +++ b/mo/test/t-moNeighborVectorTabuList.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeighborhoodPerturb.cpp b/mo/test/t-moNeighborhoodPerturb.cpp index 70a0fb214..17fbbd6d3 100644 --- a/mo/test/t-moNeighborhoodPerturb.cpp +++ b/mo/test/t-moNeighborhoodPerturb.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeighborhoodStat.cpp b/mo/test/t-moNeighborhoodStat.cpp index 130df6db3..cf09f43e0 100644 --- a/mo/test/t-moNeighborhoodStat.cpp +++ b/mo/test/t-moNeighborhoodStat.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeutralDegreeSampling.cpp b/mo/test/t-moNeutralDegreeSampling.cpp index d48158e0d..a6ae7aa10 100644 --- a/mo/test/t-moNeutralDegreeSampling.cpp +++ b/mo/test/t-moNeutralDegreeSampling.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeutralHC.cpp b/mo/test/t-moNeutralHC.cpp index 84b141d65..e757e2d72 100644 --- a/mo/test/t-moNeutralHC.cpp +++ b/mo/test/t-moNeutralHC.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeutralHCexplorer.cpp b/mo/test/t-moNeutralHCexplorer.cpp index f0a69e4f0..4d033e441 100644 --- a/mo/test/t-moNeutralHCexplorer.cpp +++ b/mo/test/t-moNeutralHCexplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moNeutralWalkSampling.cpp b/mo/test/t-moNeutralWalkSampling.cpp index 6faf66508..f372dd9a8 100644 --- a/mo/test/t-moNeutralWalkSampling.cpp +++ b/mo/test/t-moNeutralWalkSampling.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moOrderNeighborhood.cpp b/mo/test/t-moOrderNeighborhood.cpp index a95a5238d..40a118aca 100644 --- a/mo/test/t-moOrderNeighborhood.cpp +++ b/mo/test/t-moOrderNeighborhood.cpp @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRandomBestHC.cpp b/mo/test/t-moRandomBestHC.cpp index 7f2201629..1ee308fa0 100644 --- a/mo/test/t-moRandomBestHC.cpp +++ b/mo/test/t-moRandomBestHC.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRandomBestHCexplorer.cpp b/mo/test/t-moRandomBestHCexplorer.cpp index f050fc49e..516ad461c 100644 --- a/mo/test/t-moRandomBestHCexplorer.cpp +++ b/mo/test/t-moRandomBestHCexplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRandomNeutralWalk.cpp b/mo/test/t-moRandomNeutralWalk.cpp index 39eb158ee..8be03858c 100644 --- a/mo/test/t-moRandomNeutralWalk.cpp +++ b/mo/test/t-moRandomNeutralWalk.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRandomNeutralWalkExplorer.cpp b/mo/test/t-moRandomNeutralWalkExplorer.cpp index dd7d52247..aa496949b 100644 --- a/mo/test/t-moRandomNeutralWalkExplorer.cpp +++ b/mo/test/t-moRandomNeutralWalkExplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRandomSearch.cpp b/mo/test/t-moRandomSearch.cpp index 135689891..544b562ee 100644 --- a/mo/test/t-moRandomSearch.cpp +++ b/mo/test/t-moRandomSearch.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRandomSearchExplorer.cpp b/mo/test/t-moRandomSearchExplorer.cpp index 7dfbf19ce..17985c250 100644 --- a/mo/test/t-moRandomSearchExplorer.cpp +++ b/mo/test/t-moRandomSearchExplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRandomWalk.cpp b/mo/test/t-moRandomWalk.cpp index 4528f7623..19b36c7ef 100644 --- a/mo/test/t-moRandomWalk.cpp +++ b/mo/test/t-moRandomWalk.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRandomWalkExplorer.cpp b/mo/test/t-moRandomWalkExplorer.cpp index bd751b1e1..667bf1f03 100644 --- a/mo/test/t-moRandomWalkExplorer.cpp +++ b/mo/test/t-moRandomWalkExplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRestartPerturb.cpp b/mo/test/t-moRestartPerturb.cpp index f301ceefb..e00033f2f 100644 --- a/mo/test/t-moRestartPerturb.cpp +++ b/mo/test/t-moRestartPerturb.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRndIndexedVectorTabuList.cpp b/mo/test/t-moRndIndexedVectorTabuList.cpp index 5da55c117..592ac6c97 100755 --- a/mo/test/t-moRndIndexedVectorTabuList.cpp +++ b/mo/test/t-moRndIndexedVectorTabuList.cpp @@ -23,8 +23,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRndWithReplNeighborhood.cpp b/mo/test/t-moRndWithReplNeighborhood.cpp index d93f9bcdc..d235ef6c4 100644 --- a/mo/test/t-moRndWithReplNeighborhood.cpp +++ b/mo/test/t-moRndWithReplNeighborhood.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moRndWithoutReplNeighborhood.cpp b/mo/test/t-moRndWithoutReplNeighborhood.cpp index 50f8afbe0..b1b450bfb 100644 --- a/mo/test/t-moRndWithoutReplNeighborhood.cpp +++ b/mo/test/t-moRndWithoutReplNeighborhood.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moSA.cpp b/mo/test/t-moSA.cpp index b1cdfeb67..7ec20a176 100644 --- a/mo/test/t-moSA.cpp +++ b/mo/test/t-moSA.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moSAexplorer.cpp b/mo/test/t-moSAexplorer.cpp index 4c619ff88..34066d1ff 100644 --- a/mo/test/t-moSAexplorer.cpp +++ b/mo/test/t-moSAexplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moSampling.cpp b/mo/test/t-moSampling.cpp index 3864be764..ec90b6fc8 100644 --- a/mo/test/t-moSampling.cpp +++ b/mo/test/t-moSampling.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moSimpleCoolingSchedule.cpp b/mo/test/t-moSimpleCoolingSchedule.cpp index b2f8cca17..5d891c4bd 100644 --- a/mo/test/t-moSimpleCoolingSchedule.cpp +++ b/mo/test/t-moSimpleCoolingSchedule.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moSimpleHC.cpp b/mo/test/t-moSimpleHC.cpp index 973e374a4..18ce8d8db 100644 --- a/mo/test/t-moSimpleHC.cpp +++ b/mo/test/t-moSimpleHC.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moSimpleHCexplorer.cpp b/mo/test/t-moSimpleHCexplorer.cpp index 9767ce600..0b20f8370 100644 --- a/mo/test/t-moSimpleHCexplorer.cpp +++ b/mo/test/t-moSimpleHCexplorer.cpp @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include "moTestClass.h" diff --git a/mo/test/t-moSolComparator.cpp b/mo/test/t-moSolComparator.cpp index 086f6be13..72fb70f45 100644 --- a/mo/test/t-moSolComparator.cpp +++ b/mo/test/t-moSolComparator.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moSolInit.cpp b/mo/test/t-moSolInit.cpp index ce8ef3cb7..9595864f5 100644 --- a/mo/test/t-moSolInit.cpp +++ b/mo/test/t-moSolInit.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moSolNeighborComparator.cpp b/mo/test/t-moSolNeighborComparator.cpp index b98996141..09a4b253b 100644 --- a/mo/test/t-moSolNeighborComparator.cpp +++ b/mo/test/t-moSolNeighborComparator.cpp @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moSolVectorTabuList.cpp b/mo/test/t-moSolVectorTabuList.cpp index cf883d369..08e4003c6 100644 --- a/mo/test/t-moSolVectorTabuList.cpp +++ b/mo/test/t-moSolVectorTabuList.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moSolutionStat.cpp b/mo/test/t-moSolutionStat.cpp index 2ebe777da..2c8b7e7a3 100644 --- a/mo/test/t-moSolutionStat.cpp +++ b/mo/test/t-moSolutionStat.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moStatistics.cpp b/mo/test/t-moStatistics.cpp index c938dd64a..547f6c58d 100644 --- a/mo/test/t-moStatistics.cpp +++ b/mo/test/t-moStatistics.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moTS.cpp b/mo/test/t-moTS.cpp index b27d0d390..b0feaa729 100644 --- a/mo/test/t-moTS.cpp +++ b/mo/test/t-moTS.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moTSexplorer.cpp b/mo/test/t-moTSexplorer.cpp index dcce178ec..e106b1c17 100644 --- a/mo/test/t-moTSexplorer.cpp +++ b/mo/test/t-moTSexplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moTimeContinuator.cpp b/mo/test/t-moTimeContinuator.cpp index ccd47e1f9..e19c13446 100644 --- a/mo/test/t-moTimeContinuator.cpp +++ b/mo/test/t-moTimeContinuator.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moTrueContinuator.cpp b/mo/test/t-moTrueContinuator.cpp index 2a0ca7d27..e6cb59632 100644 --- a/mo/test/t-moTrueContinuator.cpp +++ b/mo/test/t-moTrueContinuator.cpp @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/mo/test/t-moVectorMonitor.cpp b/mo/test/t-moVectorMonitor.cpp index 53edcd310..b10f275a1 100644 --- a/mo/test/t-moVectorMonitor.cpp +++ b/mo/test/t-moVectorMonitor.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/moeo/doc/moeo.doxyfile.cmake b/moeo/doc/moeo.doxyfile.cmake index 37ff49465..bf5e68786 100644 --- a/moeo/doc/moeo.doxyfile.cmake +++ b/moeo/doc/moeo.doxyfile.cmake @@ -1295,7 +1295,7 @@ SKIP_FUNCTION_MACROS = YES # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. -TAGFILES = @EO_BIN_DIR@/doc/eo.doxytag=http://eodev.sourceforge.net/eo/doc/html +TAGFILES = @EO_BIN_DIR@/doc/eo.doxytag=https://nojhan.github.io/paradiseo/eo/doc/html # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. diff --git a/moeo/src/algo/moeoASEEA.h b/moeo/src/algo/moeoASEEA.h index b8afcc175..73195e4ef 100644 --- a/moeo/src/algo/moeoASEEA.h +++ b/moeo/src/algo/moeoASEEA.h @@ -32,8 +32,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoAlgo.h b/moeo/src/algo/moeoAlgo.h index 39b01f394..9eeffb4b6 100644 --- a/moeo/src/algo/moeoAlgo.h +++ b/moeo/src/algo/moeoAlgo.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoEA.h b/moeo/src/algo/moeoEA.h index a37407f87..de3c2b37b 100644 --- a/moeo/src/algo/moeoEA.h +++ b/moeo/src/algo/moeoEA.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoEasyEA.h b/moeo/src/algo/moeoEasyEA.h index 5169b3c0a..faa8eb12e 100644 --- a/moeo/src/algo/moeoEasyEA.h +++ b/moeo/src/algo/moeoEasyEA.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoExtendedNSGAII.h b/moeo/src/algo/moeoExtendedNSGAII.h index 768ad4d62..f92a87cac 100644 --- a/moeo/src/algo/moeoExtendedNSGAII.h +++ b/moeo/src/algo/moeoExtendedNSGAII.h @@ -5,8 +5,8 @@ Author: Oumayma BAHRI -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoExtendedSPEA2.h b/moeo/src/algo/moeoExtendedSPEA2.h index 44a999a3e..622d1b5c0 100644 --- a/moeo/src/algo/moeoExtendedSPEA2.h +++ b/moeo/src/algo/moeoExtendedSPEA2.h @@ -5,8 +5,8 @@ Author: Oumayma BAHRI -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoIBEA.h b/moeo/src/algo/moeoIBEA.h index b8170a08e..7bdbb8392 100644 --- a/moeo/src/algo/moeoIBEA.h +++ b/moeo/src/algo/moeoIBEA.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoMOGA.h b/moeo/src/algo/moeoMOGA.h index 5bc3fad90..2cb6170f2 100644 --- a/moeo/src/algo/moeoMOGA.h +++ b/moeo/src/algo/moeoMOGA.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoNSGA.h b/moeo/src/algo/moeoNSGA.h index 1db0b0f14..0d2ad3bc7 100644 --- a/moeo/src/algo/moeoNSGA.h +++ b/moeo/src/algo/moeoNSGA.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoNSGAII.h b/moeo/src/algo/moeoNSGAII.h index 137592865..7a9c61377 100644 --- a/moeo/src/algo/moeoNSGAII.h +++ b/moeo/src/algo/moeoNSGAII.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoPLS1.h b/moeo/src/algo/moeoPLS1.h index 04558ecf0..935efde04 100644 --- a/moeo/src/algo/moeoPLS1.h +++ b/moeo/src/algo/moeoPLS1.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoPLS2.h b/moeo/src/algo/moeoPLS2.h index 84a50c1c4..f7b60a626 100644 --- a/moeo/src/algo/moeoPLS2.h +++ b/moeo/src/algo/moeoPLS2.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoPopAlgo.h b/moeo/src/algo/moeoPopAlgo.h index a3b948a3e..806e51e9a 100644 --- a/moeo/src/algo/moeoPopAlgo.h +++ b/moeo/src/algo/moeoPopAlgo.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoPopLS.h b/moeo/src/algo/moeoPopLS.h index 357a9fb61..314b48cc6 100644 --- a/moeo/src/algo/moeoPopLS.h +++ b/moeo/src/algo/moeoPopLS.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoSEEA.h b/moeo/src/algo/moeoSEEA.h index 055fc80f8..9bddcf85e 100644 --- a/moeo/src/algo/moeoSEEA.h +++ b/moeo/src/algo/moeoSEEA.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ diff --git a/moeo/src/algo/moeoSPEA2.h b/moeo/src/algo/moeoSPEA2.h index 8b419b5f5..6f318b0bf 100644 --- a/moeo/src/algo/moeoSPEA2.h +++ b/moeo/src/algo/moeoSPEA2.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/algo/moeoUnifiedDominanceBasedLS.h b/moeo/src/algo/moeoUnifiedDominanceBasedLS.h index 0c3d819c1..b9de12acf 100644 --- a/moeo/src/algo/moeoUnifiedDominanceBasedLS.h +++ b/moeo/src/algo/moeoUnifiedDominanceBasedLS.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/archive/moeo2DMinHypervolumeArchive.h b/moeo/src/archive/moeo2DMinHypervolumeArchive.h index de022bb84..7c76d1f48 100644 --- a/moeo/src/archive/moeo2DMinHypervolumeArchive.h +++ b/moeo/src/archive/moeo2DMinHypervolumeArchive.h @@ -33,8 +33,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/archive/moeoArchive.h b/moeo/src/archive/moeoArchive.h index 0d3cfe3f4..bb475b02b 100644 --- a/moeo/src/archive/moeoArchive.h +++ b/moeo/src/archive/moeoArchive.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/archive/moeoBoundedArchive.h b/moeo/src/archive/moeoBoundedArchive.h index 0370e08bc..819fa824b 100644 --- a/moeo/src/archive/moeoBoundedArchive.h +++ b/moeo/src/archive/moeoBoundedArchive.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/archive/moeoEpsilonHyperboxArchive.h b/moeo/src/archive/moeoEpsilonHyperboxArchive.h index 7ea2e1f42..1fd406daa 100644 --- a/moeo/src/archive/moeoEpsilonHyperboxArchive.h +++ b/moeo/src/archive/moeoEpsilonHyperboxArchive.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/archive/moeoFitDivBoundedArchive.h b/moeo/src/archive/moeoFitDivBoundedArchive.h index 32e13ec5a..fc7ff65bc 100644 --- a/moeo/src/archive/moeoFitDivBoundedArchive.h +++ b/moeo/src/archive/moeoFitDivBoundedArchive.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/archive/moeoFixedSizeArchive.h b/moeo/src/archive/moeoFixedSizeArchive.h index 99437e899..4ad46995a 100644 --- a/moeo/src/archive/moeoFixedSizeArchive.h +++ b/moeo/src/archive/moeoFixedSizeArchive.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/archive/moeoFuzzyArchive.h b/moeo/src/archive/moeoFuzzyArchive.h index c0c4e4f49..df885edf9 100644 --- a/moeo/src/archive/moeoFuzzyArchive.h +++ b/moeo/src/archive/moeoFuzzyArchive.h @@ -5,8 +5,8 @@ Author: Oumayma BAHRI -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ //----------------------------------------------------------------------------- diff --git a/moeo/src/archive/moeoImprOnlyBoundedArchive.h b/moeo/src/archive/moeoImprOnlyBoundedArchive.h index 78aac5e16..d692d4200 100644 --- a/moeo/src/archive/moeoImprOnlyBoundedArchive.h +++ b/moeo/src/archive/moeoImprOnlyBoundedArchive.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/archive/moeoSPEA2Archive.h b/moeo/src/archive/moeoSPEA2Archive.h index d2c64b83a..c761bf8a9 100644 --- a/moeo/src/archive/moeoSPEA2Archive.h +++ b/moeo/src/archive/moeoSPEA2Archive.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/archive/moeoUnboundedArchive.h b/moeo/src/archive/moeoUnboundedArchive.h index 7d328221a..cd00375e9 100644 --- a/moeo/src/archive/moeoUnboundedArchive.h +++ b/moeo/src/archive/moeoUnboundedArchive.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoAggregativeComparator.h b/moeo/src/comparator/moeoAggregativeComparator.h index e969f27d9..a7e1e6c83 100644 --- a/moeo/src/comparator/moeoAggregativeComparator.h +++ b/moeo/src/comparator/moeoAggregativeComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoComparator.h b/moeo/src/comparator/moeoComparator.h index ca0a1afe9..e07209227 100644 --- a/moeo/src/comparator/moeoComparator.h +++ b/moeo/src/comparator/moeoComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoDiversityThenFitnessComparator.h b/moeo/src/comparator/moeoDiversityThenFitnessComparator.h index b094a7787..672775fec 100644 --- a/moeo/src/comparator/moeoDiversityThenFitnessComparator.h +++ b/moeo/src/comparator/moeoDiversityThenFitnessComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoEpsilonObjectiveVectorComparator.h b/moeo/src/comparator/moeoEpsilonObjectiveVectorComparator.h index 8d7639fc3..2e0837794 100644 --- a/moeo/src/comparator/moeoEpsilonObjectiveVectorComparator.h +++ b/moeo/src/comparator/moeoEpsilonObjectiveVectorComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoFitnessComparator.h b/moeo/src/comparator/moeoFitnessComparator.h index a90d3a52c..d87a5dd5f 100644 --- a/moeo/src/comparator/moeoFitnessComparator.h +++ b/moeo/src/comparator/moeoFitnessComparator.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoFitnessThenDiversityComparator.h b/moeo/src/comparator/moeoFitnessThenDiversityComparator.h index 910e5458f..1d210456f 100644 --- a/moeo/src/comparator/moeoFitnessThenDiversityComparator.h +++ b/moeo/src/comparator/moeoFitnessThenDiversityComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoFuzzyParetoComparator.h b/moeo/src/comparator/moeoFuzzyParetoComparator.h index c74f643e6..4bb7a1727 100644 --- a/moeo/src/comparator/moeoFuzzyParetoComparator.h +++ b/moeo/src/comparator/moeoFuzzyParetoComparator.h @@ -5,8 +5,8 @@ Author: Oumayma BAHRI -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoGDominanceObjectiveVectorComparator.h b/moeo/src/comparator/moeoGDominanceObjectiveVectorComparator.h index ecdb54064..bfa47b6fa 100644 --- a/moeo/src/comparator/moeoGDominanceObjectiveVectorComparator.h +++ b/moeo/src/comparator/moeoGDominanceObjectiveVectorComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoObjectiveObjectiveVectorComparator.h b/moeo/src/comparator/moeoObjectiveObjectiveVectorComparator.h index 86ff74e86..2f0f89b66 100644 --- a/moeo/src/comparator/moeoObjectiveObjectiveVectorComparator.h +++ b/moeo/src/comparator/moeoObjectiveObjectiveVectorComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoObjectiveVectorComparator.h b/moeo/src/comparator/moeoObjectiveVectorComparator.h index 76a41eff1..2f7a24bd0 100644 --- a/moeo/src/comparator/moeoObjectiveVectorComparator.h +++ b/moeo/src/comparator/moeoObjectiveVectorComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoOneObjectiveComparator.h b/moeo/src/comparator/moeoOneObjectiveComparator.h index f3543853f..a0a3c81f4 100644 --- a/moeo/src/comparator/moeoOneObjectiveComparator.h +++ b/moeo/src/comparator/moeoOneObjectiveComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoParetoDualObjectiveVectorComparator.h b/moeo/src/comparator/moeoParetoDualObjectiveVectorComparator.h index e7e1ffd06..6ff2e200a 100644 --- a/moeo/src/comparator/moeoParetoDualObjectiveVectorComparator.h +++ b/moeo/src/comparator/moeoParetoDualObjectiveVectorComparator.h @@ -16,7 +16,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/moeo/src/comparator/moeoParetoObjectiveVectorComparator.h b/moeo/src/comparator/moeoParetoObjectiveVectorComparator.h index 34757114e..b65e49c8c 100644 --- a/moeo/src/comparator/moeoParetoObjectiveVectorComparator.h +++ b/moeo/src/comparator/moeoParetoObjectiveVectorComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoStrictObjectiveVectorComparator.h b/moeo/src/comparator/moeoStrictObjectiveVectorComparator.h index 55863e427..c233ec5ca 100644 --- a/moeo/src/comparator/moeoStrictObjectiveVectorComparator.h +++ b/moeo/src/comparator/moeoStrictObjectiveVectorComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/comparator/moeoWeakObjectiveVectorComparator.h b/moeo/src/comparator/moeoWeakObjectiveVectorComparator.h index 3974b9429..824b74a31 100644 --- a/moeo/src/comparator/moeoWeakObjectiveVectorComparator.h +++ b/moeo/src/comparator/moeoWeakObjectiveVectorComparator.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/continue/moeoDualHypContinue.h b/moeo/src/continue/moeoDualHypContinue.h index 99c33d45f..41a33cd25 100644 --- a/moeo/src/continue/moeoDualHypContinue.h +++ b/moeo/src/continue/moeoDualHypContinue.h @@ -16,7 +16,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/moeo/src/continue/moeoHypContinue.h b/moeo/src/continue/moeoHypContinue.h index bbc1a799b..819c96a69 100644 --- a/moeo/src/continue/moeoHypContinue.h +++ b/moeo/src/continue/moeoHypContinue.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/MOEO.h b/moeo/src/core/MOEO.h index 061af300f..ef640806b 100644 --- a/moeo/src/core/MOEO.h +++ b/moeo/src/core/MOEO.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/moeoBitVector.h b/moeo/src/core/moeoBitVector.h index ff4183256..f07c8c83e 100644 --- a/moeo/src/core/moeoBitVector.h +++ b/moeo/src/core/moeoBitVector.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/moeoDualRealObjectiveVector.h b/moeo/src/core/moeoDualRealObjectiveVector.h index 64bf65f57..c36b5e386 100644 --- a/moeo/src/core/moeoDualRealObjectiveVector.h +++ b/moeo/src/core/moeoDualRealObjectiveVector.h @@ -16,7 +16,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/moeo/src/core/moeoEvalFunc.h b/moeo/src/core/moeoEvalFunc.h index 767fe8f9d..d487d30ff 100644 --- a/moeo/src/core/moeoEvalFunc.h +++ b/moeo/src/core/moeoEvalFunc.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/moeoFuzzyRealObjectiveVector.h b/moeo/src/core/moeoFuzzyRealObjectiveVector.h index 2fa7367ae..6c1a34d61 100644 --- a/moeo/src/core/moeoFuzzyRealObjectiveVector.h +++ b/moeo/src/core/moeoFuzzyRealObjectiveVector.h @@ -5,8 +5,8 @@ Author: Oumayma BAHRI -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/moeoIntVector.h b/moeo/src/core/moeoIntVector.h index 57904a1c6..0bb775041 100644 --- a/moeo/src/core/moeoIntVector.h +++ b/moeo/src/core/moeoIntVector.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/moeoObjectiveVector.h b/moeo/src/core/moeoObjectiveVector.h index 8629a4db9..d1f3a2c00 100644 --- a/moeo/src/core/moeoObjectiveVector.h +++ b/moeo/src/core/moeoObjectiveVector.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/moeoObjectiveVectorTraits.cpp b/moeo/src/core/moeoObjectiveVectorTraits.cpp index ffa042f24..a1cbf5e3f 100644 --- a/moeo/src/core/moeoObjectiveVectorTraits.cpp +++ b/moeo/src/core/moeoObjectiveVectorTraits.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/moeoObjectiveVectorTraits.h b/moeo/src/core/moeoObjectiveVectorTraits.h index 517e7bd04..78f334be3 100644 --- a/moeo/src/core/moeoObjectiveVectorTraits.h +++ b/moeo/src/core/moeoObjectiveVectorTraits.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/moeoRealObjectiveVector.h b/moeo/src/core/moeoRealObjectiveVector.h index 135a13f75..82a701379 100644 --- a/moeo/src/core/moeoRealObjectiveVector.h +++ b/moeo/src/core/moeoRealObjectiveVector.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/moeoRealVector.h b/moeo/src/core/moeoRealVector.h index 6157ef9da..4c4c16b9d 100644 --- a/moeo/src/core/moeoRealVector.h +++ b/moeo/src/core/moeoRealVector.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/core/moeoScalarObjectiveVector.h b/moeo/src/core/moeoScalarObjectiveVector.h index 9d1183ad7..0eece676f 100644 --- a/moeo/src/core/moeoScalarObjectiveVector.h +++ b/moeo/src/core/moeoScalarObjectiveVector.h @@ -16,7 +16,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/moeo/src/core/moeoVector.h b/moeo/src/core/moeoVector.h index cf89186df..35d6d764a 100644 --- a/moeo/src/core/moeoVector.h +++ b/moeo/src/core/moeoVector.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/distance/moeoBertDistance.h b/moeo/src/distance/moeoBertDistance.h index 24aa2af51..47ddf1497 100644 --- a/moeo/src/distance/moeoBertDistance.h +++ b/moeo/src/distance/moeoBertDistance.h @@ -5,8 +5,8 @@ Author: Oumayma BAHRI -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ //----------------------------------------------------------------------------- diff --git a/moeo/src/distance/moeoDistance.h b/moeo/src/distance/moeoDistance.h index a78593c64..9b82b1c02 100644 --- a/moeo/src/distance/moeoDistance.h +++ b/moeo/src/distance/moeoDistance.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/distance/moeoDistanceMatrix.h b/moeo/src/distance/moeoDistanceMatrix.h index 40514dc28..93476f37d 100644 --- a/moeo/src/distance/moeoDistanceMatrix.h +++ b/moeo/src/distance/moeoDistanceMatrix.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/distance/moeoEuclideanDistance.h b/moeo/src/distance/moeoEuclideanDistance.h index 5c43c7599..4ea365770 100644 --- a/moeo/src/distance/moeoEuclideanDistance.h +++ b/moeo/src/distance/moeoEuclideanDistance.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/distance/moeoExpectedFuzzyDistance.h b/moeo/src/distance/moeoExpectedFuzzyDistance.h index 9447fe5f4..05401e4b1 100644 --- a/moeo/src/distance/moeoExpectedFuzzyDistance.h +++ b/moeo/src/distance/moeoExpectedFuzzyDistance.h @@ -5,8 +5,8 @@ Author: Oumayma BAHRI -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ //----------------------------------------------------------------------------- diff --git a/moeo/src/distance/moeoManhattanDistance.h b/moeo/src/distance/moeoManhattanDistance.h index 37d70c879..91e22c618 100644 --- a/moeo/src/distance/moeoManhattanDistance.h +++ b/moeo/src/distance/moeoManhattanDistance.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/distance/moeoNormalizedDistance.h b/moeo/src/distance/moeoNormalizedDistance.h index 8cf2f93a5..36f653994 100644 --- a/moeo/src/distance/moeoNormalizedDistance.h +++ b/moeo/src/distance/moeoNormalizedDistance.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/distance/moeoObjSpaceDistance.h b/moeo/src/distance/moeoObjSpaceDistance.h index 2158a7934..418310297 100644 --- a/moeo/src/distance/moeoObjSpaceDistance.h +++ b/moeo/src/distance/moeoObjSpaceDistance.h @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/diversity/moeoCrowdingDiversityAssignment.h b/moeo/src/diversity/moeoCrowdingDiversityAssignment.h index 8f9b55417..16ce24c7b 100644 --- a/moeo/src/diversity/moeoCrowdingDiversityAssignment.h +++ b/moeo/src/diversity/moeoCrowdingDiversityAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/diversity/moeoDiversityAssignment.h b/moeo/src/diversity/moeoDiversityAssignment.h index 1f3e50560..fc019676a 100644 --- a/moeo/src/diversity/moeoDiversityAssignment.h +++ b/moeo/src/diversity/moeoDiversityAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/diversity/moeoDummyDiversityAssignment.h b/moeo/src/diversity/moeoDummyDiversityAssignment.h index b233f3863..b0476f48c 100644 --- a/moeo/src/diversity/moeoDummyDiversityAssignment.h +++ b/moeo/src/diversity/moeoDummyDiversityAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/diversity/moeoFrontByFrontCrowdingDiversityAssignment.h b/moeo/src/diversity/moeoFrontByFrontCrowdingDiversityAssignment.h index 7f85876cc..81745d9eb 100644 --- a/moeo/src/diversity/moeoFrontByFrontCrowdingDiversityAssignment.h +++ b/moeo/src/diversity/moeoFrontByFrontCrowdingDiversityAssignment.h @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/diversity/moeoFrontByFrontSharingDiversityAssignment.h b/moeo/src/diversity/moeoFrontByFrontSharingDiversityAssignment.h index 62e3b65c8..a015c844f 100644 --- a/moeo/src/diversity/moeoFrontByFrontSharingDiversityAssignment.h +++ b/moeo/src/diversity/moeoFrontByFrontSharingDiversityAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/diversity/moeoFuzzyCrowdingDiversity.h b/moeo/src/diversity/moeoFuzzyCrowdingDiversity.h index 62d77f86d..b9259dad8 100644 --- a/moeo/src/diversity/moeoFuzzyCrowdingDiversity.h +++ b/moeo/src/diversity/moeoFuzzyCrowdingDiversity.h @@ -5,8 +5,8 @@ Author: Oumayma BAHRI -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ //----------------------------------------------------------------------------- diff --git a/moeo/src/diversity/moeoFuzzyNearestNeighborDiversity.h b/moeo/src/diversity/moeoFuzzyNearestNeighborDiversity.h index 5be53c393..4fdb67f65 100644 --- a/moeo/src/diversity/moeoFuzzyNearestNeighborDiversity.h +++ b/moeo/src/diversity/moeoFuzzyNearestNeighborDiversity.h @@ -5,8 +5,8 @@ Author: Oumayma BAHRI -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ //----------------------------------------------------------------------------- diff --git a/moeo/src/diversity/moeoNearestNeighborDiversityAssignment.h b/moeo/src/diversity/moeoNearestNeighborDiversityAssignment.h index 434bb0b15..63a4239dc 100644 --- a/moeo/src/diversity/moeoNearestNeighborDiversityAssignment.h +++ b/moeo/src/diversity/moeoNearestNeighborDiversityAssignment.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/diversity/moeoSharingDiversityAssignment.h b/moeo/src/diversity/moeoSharingDiversityAssignment.h index 4a0142e70..68c26a6ef 100644 --- a/moeo/src/diversity/moeoSharingDiversityAssignment.h +++ b/moeo/src/diversity/moeoSharingDiversityAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/do/make_checkpoint_moeo.h b/moeo/src/do/make_checkpoint_moeo.h index 98bb1e2a1..a0eb98c0b 100644 --- a/moeo/src/do/make_checkpoint_moeo.h +++ b/moeo/src/do/make_checkpoint_moeo.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/do/make_continue_moeo.h b/moeo/src/do/make_continue_moeo.h index 0267ca77a..f718cf05d 100644 --- a/moeo/src/do/make_continue_moeo.h +++ b/moeo/src/do/make_continue_moeo.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/do/make_ea_moeo.h b/moeo/src/do/make_ea_moeo.h index 76559e198..465cb5de9 100644 --- a/moeo/src/do/make_ea_moeo.h +++ b/moeo/src/do/make_ea_moeo.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/explorer/moeoExhaustiveNeighborhoodExplorer.h b/moeo/src/explorer/moeoExhaustiveNeighborhoodExplorer.h index 1f08a9a92..dc026538c 100644 --- a/moeo/src/explorer/moeoExhaustiveNeighborhoodExplorer.h +++ b/moeo/src/explorer/moeoExhaustiveNeighborhoodExplorer.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/explorer/moeoFirstImprovingNeighborhoodExplorer.h b/moeo/src/explorer/moeoFirstImprovingNeighborhoodExplorer.h index fdc3ad4e7..38c14b9a0 100644 --- a/moeo/src/explorer/moeoFirstImprovingNeighborhoodExplorer.h +++ b/moeo/src/explorer/moeoFirstImprovingNeighborhoodExplorer.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/explorer/moeoNoDesimprovingNeighborhoodExplorer.h b/moeo/src/explorer/moeoNoDesimprovingNeighborhoodExplorer.h index d5858a70d..efc3d0a3f 100644 --- a/moeo/src/explorer/moeoNoDesimprovingNeighborhoodExplorer.h +++ b/moeo/src/explorer/moeoNoDesimprovingNeighborhoodExplorer.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/explorer/moeoPopNeighborhoodExplorer.h b/moeo/src/explorer/moeoPopNeighborhoodExplorer.h index ef7b6e589..2515c6f15 100644 --- a/moeo/src/explorer/moeoPopNeighborhoodExplorer.h +++ b/moeo/src/explorer/moeoPopNeighborhoodExplorer.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/explorer/moeoSimpleSubNeighborhoodExplorer.h b/moeo/src/explorer/moeoSimpleSubNeighborhoodExplorer.h index ab79cd61b..f58a4e4d4 100644 --- a/moeo/src/explorer/moeoSimpleSubNeighborhoodExplorer.h +++ b/moeo/src/explorer/moeoSimpleSubNeighborhoodExplorer.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/explorer/moeoSubNeighborhoodExplorer.h b/moeo/src/explorer/moeoSubNeighborhoodExplorer.h index d41bc5c9f..03a11391d 100644 --- a/moeo/src/explorer/moeoSubNeighborhoodExplorer.h +++ b/moeo/src/explorer/moeoSubNeighborhoodExplorer.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoAggregationFitnessAssignment.h b/moeo/src/fitness/moeoAggregationFitnessAssignment.h index deb5d9043..4e0899bb7 100644 --- a/moeo/src/fitness/moeoAggregationFitnessAssignment.h +++ b/moeo/src/fitness/moeoAggregationFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoBinaryIndicatorBasedFitnessAssignment.h b/moeo/src/fitness/moeoBinaryIndicatorBasedFitnessAssignment.h index 3a06b0443..bd524cb24 100644 --- a/moeo/src/fitness/moeoBinaryIndicatorBasedFitnessAssignment.h +++ b/moeo/src/fitness/moeoBinaryIndicatorBasedFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoConstraintFitnessAssignment.h b/moeo/src/fitness/moeoConstraintFitnessAssignment.h index daaada5e9..b6e9d0bf3 100644 --- a/moeo/src/fitness/moeoConstraintFitnessAssignment.h +++ b/moeo/src/fitness/moeoConstraintFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoCriterionBasedFitnessAssignment.h b/moeo/src/fitness/moeoCriterionBasedFitnessAssignment.h index 398e005bc..ce33537b2 100644 --- a/moeo/src/fitness/moeoCriterionBasedFitnessAssignment.h +++ b/moeo/src/fitness/moeoCriterionBasedFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoDominanceBasedFitnessAssignment.h b/moeo/src/fitness/moeoDominanceBasedFitnessAssignment.h index af5ca70dd..b3791c843 100644 --- a/moeo/src/fitness/moeoDominanceBasedFitnessAssignment.h +++ b/moeo/src/fitness/moeoDominanceBasedFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoDominanceCountFitnessAssignment.h b/moeo/src/fitness/moeoDominanceCountFitnessAssignment.h index a991d34d9..dee4fbdd2 100644 --- a/moeo/src/fitness/moeoDominanceCountFitnessAssignment.h +++ b/moeo/src/fitness/moeoDominanceCountFitnessAssignment.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoDominanceCountRankingFitnessAssignment.h b/moeo/src/fitness/moeoDominanceCountRankingFitnessAssignment.h index 1129f2c1c..16aeed771 100644 --- a/moeo/src/fitness/moeoDominanceCountRankingFitnessAssignment.h +++ b/moeo/src/fitness/moeoDominanceCountRankingFitnessAssignment.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoDominanceDepthFitnessAssignment.h b/moeo/src/fitness/moeoDominanceDepthFitnessAssignment.h index 96f295be4..7ac592ac0 100644 --- a/moeo/src/fitness/moeoDominanceDepthFitnessAssignment.h +++ b/moeo/src/fitness/moeoDominanceDepthFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoDominanceRankFitnessAssignment.h b/moeo/src/fitness/moeoDominanceRankFitnessAssignment.h index de3272411..c7ecbae02 100644 --- a/moeo/src/fitness/moeoDominanceRankFitnessAssignment.h +++ b/moeo/src/fitness/moeoDominanceRankFitnessAssignment.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoDummyFitnessAssignment.h b/moeo/src/fitness/moeoDummyFitnessAssignment.h index fbe506740..d586c6269 100644 --- a/moeo/src/fitness/moeoDummyFitnessAssignment.h +++ b/moeo/src/fitness/moeoDummyFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoExpBinaryIndicatorBasedDualFitnessAssignment.h b/moeo/src/fitness/moeoExpBinaryIndicatorBasedDualFitnessAssignment.h index 98c6a51d2..4bf51e6e4 100644 --- a/moeo/src/fitness/moeoExpBinaryIndicatorBasedDualFitnessAssignment.h +++ b/moeo/src/fitness/moeoExpBinaryIndicatorBasedDualFitnessAssignment.h @@ -16,7 +16,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/moeo/src/fitness/moeoExpBinaryIndicatorBasedFitnessAssignment.h b/moeo/src/fitness/moeoExpBinaryIndicatorBasedFitnessAssignment.h index 41a3abd47..bed64eb1f 100644 --- a/moeo/src/fitness/moeoExpBinaryIndicatorBasedFitnessAssignment.h +++ b/moeo/src/fitness/moeoExpBinaryIndicatorBasedFitnessAssignment.h @@ -34,8 +34,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoFitnessAssignment.h b/moeo/src/fitness/moeoFitnessAssignment.h index 396c46bfa..94c2493ea 100644 --- a/moeo/src/fitness/moeoFitnessAssignment.h +++ b/moeo/src/fitness/moeoFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoIndicatorBasedFitnessAssignment.h b/moeo/src/fitness/moeoIndicatorBasedFitnessAssignment.h index 23a761436..785aba9f9 100644 --- a/moeo/src/fitness/moeoIndicatorBasedFitnessAssignment.h +++ b/moeo/src/fitness/moeoIndicatorBasedFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoReferencePointIndicatorBasedFitnessAssignment.h b/moeo/src/fitness/moeoReferencePointIndicatorBasedFitnessAssignment.h index 6fb4470d2..ae2e0fe07 100644 --- a/moeo/src/fitness/moeoReferencePointIndicatorBasedFitnessAssignment.h +++ b/moeo/src/fitness/moeoReferencePointIndicatorBasedFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoScalarFitnessAssignment.h b/moeo/src/fitness/moeoScalarFitnessAssignment.h index 1cbbd56d9..05d90a667 100644 --- a/moeo/src/fitness/moeoScalarFitnessAssignment.h +++ b/moeo/src/fitness/moeoScalarFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoSingleObjectivization.h b/moeo/src/fitness/moeoSingleObjectivization.h index f3ecbba06..9be24d596 100644 --- a/moeo/src/fitness/moeoSingleObjectivization.h +++ b/moeo/src/fitness/moeoSingleObjectivization.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/fitness/moeoUnaryIndicatorBasedFitnessAssignment.h b/moeo/src/fitness/moeoUnaryIndicatorBasedFitnessAssignment.h index 119ea37a8..6b57ac507 100644 --- a/moeo/src/fitness/moeoUnaryIndicatorBasedFitnessAssignment.h +++ b/moeo/src/fitness/moeoUnaryIndicatorBasedFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/hybridization/moeoDMLSGenUpdater.h b/moeo/src/hybridization/moeoDMLSGenUpdater.h index c318f76ca..82099f4d5 100644 --- a/moeo/src/hybridization/moeoDMLSGenUpdater.h +++ b/moeo/src/hybridization/moeoDMLSGenUpdater.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/hybridization/moeoDMLSMonOp.h b/moeo/src/hybridization/moeoDMLSMonOp.h index 7840e8a8c..d70c0c788 100644 --- a/moeo/src/hybridization/moeoDMLSMonOp.h +++ b/moeo/src/hybridization/moeoDMLSMonOp.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoAdditiveEpsilonBinaryMetric.h b/moeo/src/metric/moeoAdditiveEpsilonBinaryMetric.h index 8dacc9d7c..41d4a2a57 100644 --- a/moeo/src/metric/moeoAdditiveEpsilonBinaryMetric.h +++ b/moeo/src/metric/moeoAdditiveEpsilonBinaryMetric.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoContributionMetric.h b/moeo/src/metric/moeoContributionMetric.h index f8df458da..d25feba15 100644 --- a/moeo/src/metric/moeoContributionMetric.h +++ b/moeo/src/metric/moeoContributionMetric.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoDistanceMetric.h b/moeo/src/metric/moeoDistanceMetric.h index 13c642acd..165e2a8e9 100644 --- a/moeo/src/metric/moeoDistanceMetric.h +++ b/moeo/src/metric/moeoDistanceMetric.h @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoDualHyperVolumeDifferenceMetric.h b/moeo/src/metric/moeoDualHyperVolumeDifferenceMetric.h index 9cea4fd76..994ac4a52 100644 --- a/moeo/src/metric/moeoDualHyperVolumeDifferenceMetric.h +++ b/moeo/src/metric/moeoDualHyperVolumeDifferenceMetric.h @@ -16,7 +16,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/moeo/src/metric/moeoEntropyMetric.h b/moeo/src/metric/moeoEntropyMetric.h index 012e99d9e..a77cdd43b 100644 --- a/moeo/src/metric/moeoEntropyMetric.h +++ b/moeo/src/metric/moeoEntropyMetric.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoHyperVolumeDifferenceMetric.h b/moeo/src/metric/moeoHyperVolumeDifferenceMetric.h index ad3336cd7..8b9631a14 100644 --- a/moeo/src/metric/moeoHyperVolumeDifferenceMetric.h +++ b/moeo/src/metric/moeoHyperVolumeDifferenceMetric.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoHyperVolumeMetric.h b/moeo/src/metric/moeoHyperVolumeMetric.h index ce1ee0c1c..13f119c7c 100644 --- a/moeo/src/metric/moeoHyperVolumeMetric.h +++ b/moeo/src/metric/moeoHyperVolumeMetric.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoHypervolumeBinaryMetric.h b/moeo/src/metric/moeoHypervolumeBinaryMetric.h index 3fbc42031..4d4d297e7 100644 --- a/moeo/src/metric/moeoHypervolumeBinaryMetric.h +++ b/moeo/src/metric/moeoHypervolumeBinaryMetric.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoMetric.h b/moeo/src/metric/moeoMetric.h index b214803de..c8e612222 100644 --- a/moeo/src/metric/moeoMetric.h +++ b/moeo/src/metric/moeoMetric.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoNormalizedSolutionVsSolutionBinaryMetric.h b/moeo/src/metric/moeoNormalizedSolutionVsSolutionBinaryMetric.h index 6a6368f1d..7424d3b54 100644 --- a/moeo/src/metric/moeoNormalizedSolutionVsSolutionBinaryMetric.h +++ b/moeo/src/metric/moeoNormalizedSolutionVsSolutionBinaryMetric.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoVecVsVecAdditiveEpsilonBinaryMetric.h b/moeo/src/metric/moeoVecVsVecAdditiveEpsilonBinaryMetric.h index c157c49fe..287e79d40 100644 --- a/moeo/src/metric/moeoVecVsVecAdditiveEpsilonBinaryMetric.h +++ b/moeo/src/metric/moeoVecVsVecAdditiveEpsilonBinaryMetric.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoVecVsVecEpsilonBinaryMetric.h b/moeo/src/metric/moeoVecVsVecEpsilonBinaryMetric.h index 570d3e577..90f6978fb 100644 --- a/moeo/src/metric/moeoVecVsVecEpsilonBinaryMetric.h +++ b/moeo/src/metric/moeoVecVsVecEpsilonBinaryMetric.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/metric/moeoVecVsVecMultiplicativeEpsilonBinaryMetric.h b/moeo/src/metric/moeoVecVsVecMultiplicativeEpsilonBinaryMetric.h index 803d44bbb..5dacc0252 100644 --- a/moeo/src/metric/moeoVecVsVecMultiplicativeEpsilonBinaryMetric.h +++ b/moeo/src/metric/moeoVecVsVecMultiplicativeEpsilonBinaryMetric.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/replacement/moeoElitistReplacement.h b/moeo/src/replacement/moeoElitistReplacement.h index 75f896b2e..ee9416781 100644 --- a/moeo/src/replacement/moeoElitistReplacement.h +++ b/moeo/src/replacement/moeoElitistReplacement.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/replacement/moeoEnvironmentalReplacement.h b/moeo/src/replacement/moeoEnvironmentalReplacement.h index 4bba8e962..4c89bf6c4 100644 --- a/moeo/src/replacement/moeoEnvironmentalReplacement.h +++ b/moeo/src/replacement/moeoEnvironmentalReplacement.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/replacement/moeoGenerationalReplacement.h b/moeo/src/replacement/moeoGenerationalReplacement.h index bf78a7745..fe2d819e8 100644 --- a/moeo/src/replacement/moeoGenerationalReplacement.h +++ b/moeo/src/replacement/moeoGenerationalReplacement.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/replacement/moeoReplacement.h b/moeo/src/replacement/moeoReplacement.h index 286575cc7..9c69583c9 100644 --- a/moeo/src/replacement/moeoReplacement.h +++ b/moeo/src/replacement/moeoReplacement.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/algo/moeoHC.h b/moeo/src/scalarStuffs/algo/moeoHC.h index 8c922b1b3..6b3902f76 100644 --- a/moeo/src/scalarStuffs/algo/moeoHC.h +++ b/moeo/src/scalarStuffs/algo/moeoHC.h @@ -30,8 +30,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef __moeoHC_h diff --git a/moeo/src/scalarStuffs/algo/moeoILS.h b/moeo/src/scalarStuffs/algo/moeoILS.h index 37b9ea8f7..f082efda8 100644 --- a/moeo/src/scalarStuffs/algo/moeoILS.h +++ b/moeo/src/scalarStuffs/algo/moeoILS.h @@ -30,8 +30,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moeoILS_h diff --git a/moeo/src/scalarStuffs/algo/moeoSA.h b/moeo/src/scalarStuffs/algo/moeoSA.h index 9b1615a2f..7ff8ed555 100644 --- a/moeo/src/scalarStuffs/algo/moeoSA.h +++ b/moeo/src/scalarStuffs/algo/moeoSA.h @@ -30,8 +30,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef __moeoSA_h diff --git a/moeo/src/scalarStuffs/algo/moeoSolAlgo.h b/moeo/src/scalarStuffs/algo/moeoSolAlgo.h index 4bdafc583..9b2eb0ae1 100644 --- a/moeo/src/scalarStuffs/algo/moeoSolAlgo.h +++ b/moeo/src/scalarStuffs/algo/moeoSolAlgo.h @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/algo/moeoTS.h b/moeo/src/scalarStuffs/algo/moeoTS.h index 4eadcb289..3c7013c41 100644 --- a/moeo/src/scalarStuffs/algo/moeoTS.h +++ b/moeo/src/scalarStuffs/algo/moeoTS.h @@ -30,8 +30,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef __moeoTS_h diff --git a/moeo/src/scalarStuffs/algo/moeoVFAS.h b/moeo/src/scalarStuffs/algo/moeoVFAS.h index 507063322..793725a69 100644 --- a/moeo/src/scalarStuffs/algo/moeoVFAS.h +++ b/moeo/src/scalarStuffs/algo/moeoVFAS.h @@ -30,8 +30,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moeoVFAS_h diff --git a/moeo/src/scalarStuffs/algo/moeoVNS.h b/moeo/src/scalarStuffs/algo/moeoVNS.h index 3d3668174..3148be959 100644 --- a/moeo/src/scalarStuffs/algo/moeoVNS.h +++ b/moeo/src/scalarStuffs/algo/moeoVNS.h @@ -30,8 +30,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moeoVNS_h diff --git a/moeo/src/scalarStuffs/archive/moeoQuadTree.h b/moeo/src/scalarStuffs/archive/moeoQuadTree.h index b06a248d4..e599da2b1 100644 --- a/moeo/src/scalarStuffs/archive/moeoQuadTree.h +++ b/moeo/src/scalarStuffs/archive/moeoQuadTree.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/archive/moeoQuadTreeArchive.h b/moeo/src/scalarStuffs/archive/moeoQuadTreeArchive.h index 9f95224bb..9b1357346 100644 --- a/moeo/src/scalarStuffs/archive/moeoQuadTreeArchive.h +++ b/moeo/src/scalarStuffs/archive/moeoQuadTreeArchive.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/distance/moeoAchievementScalarizingFunctionDistance.h b/moeo/src/scalarStuffs/distance/moeoAchievementScalarizingFunctionDistance.h index 192feae33..7097d08c1 100644 --- a/moeo/src/scalarStuffs/distance/moeoAchievementScalarizingFunctionDistance.h +++ b/moeo/src/scalarStuffs/distance/moeoAchievementScalarizingFunctionDistance.h @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/distance/moeoAugmentedAchievementScalarizingFunctionDistance.h b/moeo/src/scalarStuffs/distance/moeoAugmentedAchievementScalarizingFunctionDistance.h index 62120071a..6420e7a5f 100644 --- a/moeo/src/scalarStuffs/distance/moeoAugmentedAchievementScalarizingFunctionDistance.h +++ b/moeo/src/scalarStuffs/distance/moeoAugmentedAchievementScalarizingFunctionDistance.h @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/distance/moeoAugmentedWeightedChebychevDistance.h b/moeo/src/scalarStuffs/distance/moeoAugmentedWeightedChebychevDistance.h index 098b3c817..249d6c91c 100644 --- a/moeo/src/scalarStuffs/distance/moeoAugmentedWeightedChebychevDistance.h +++ b/moeo/src/scalarStuffs/distance/moeoAugmentedWeightedChebychevDistance.h @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/distance/moeoWeightedChebychevDistance.h b/moeo/src/scalarStuffs/distance/moeoWeightedChebychevDistance.h index c25c86987..975538e5a 100644 --- a/moeo/src/scalarStuffs/distance/moeoWeightedChebychevDistance.h +++ b/moeo/src/scalarStuffs/distance/moeoWeightedChebychevDistance.h @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/explorer/moeoHCMoveLoopExpl.h b/moeo/src/scalarStuffs/explorer/moeoHCMoveLoopExpl.h index 83dd5f737..a08c9aacb 100644 --- a/moeo/src/scalarStuffs/explorer/moeoHCMoveLoopExpl.h +++ b/moeo/src/scalarStuffs/explorer/moeoHCMoveLoopExpl.h @@ -29,8 +29,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef __moeoHCLoopExpl_h diff --git a/moeo/src/scalarStuffs/explorer/moeoTSMoveLoopExpl.h b/moeo/src/scalarStuffs/explorer/moeoTSMoveLoopExpl.h index 3485184fe..2ca4857eb 100644 --- a/moeo/src/scalarStuffs/explorer/moeoTSMoveLoopExpl.h +++ b/moeo/src/scalarStuffs/explorer/moeoTSMoveLoopExpl.h @@ -29,8 +29,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moeoTSMoveLoopExpl_h diff --git a/moeo/src/scalarStuffs/fitness/moeoAchievementFitnessAssignment.h b/moeo/src/scalarStuffs/fitness/moeoAchievementFitnessAssignment.h index 2c8b873fb..5622f03c2 100644 --- a/moeo/src/scalarStuffs/fitness/moeoAchievementFitnessAssignment.h +++ b/moeo/src/scalarStuffs/fitness/moeoAchievementFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/fitness/moeoAchievementScalarizingFunctionMetricFitnessAssignment.h b/moeo/src/scalarStuffs/fitness/moeoAchievementScalarizingFunctionMetricFitnessAssignment.h index 7546092a7..d4b9a6ced 100644 --- a/moeo/src/scalarStuffs/fitness/moeoAchievementScalarizingFunctionMetricFitnessAssignment.h +++ b/moeo/src/scalarStuffs/fitness/moeoAchievementScalarizingFunctionMetricFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/fitness/moeoAugmentedAchievementScalarizingFunctionMetricFitnessAssignment.h b/moeo/src/scalarStuffs/fitness/moeoAugmentedAchievementScalarizingFunctionMetricFitnessAssignment.h index 02a1c8293..9de6c99ed 100644 --- a/moeo/src/scalarStuffs/fitness/moeoAugmentedAchievementScalarizingFunctionMetricFitnessAssignment.h +++ b/moeo/src/scalarStuffs/fitness/moeoAugmentedAchievementScalarizingFunctionMetricFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/fitness/moeoAugmentedWeightedChebychevMetricFitnessAssignment.h b/moeo/src/scalarStuffs/fitness/moeoAugmentedWeightedChebychevMetricFitnessAssignment.h index 4f6a27fb6..83d06c852 100644 --- a/moeo/src/scalarStuffs/fitness/moeoAugmentedWeightedChebychevMetricFitnessAssignment.h +++ b/moeo/src/scalarStuffs/fitness/moeoAugmentedWeightedChebychevMetricFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/fitness/moeoIncrEvalSingleObjectivizer.h b/moeo/src/scalarStuffs/fitness/moeoIncrEvalSingleObjectivizer.h index d316e6cc3..de32d938a 100644 --- a/moeo/src/scalarStuffs/fitness/moeoIncrEvalSingleObjectivizer.h +++ b/moeo/src/scalarStuffs/fitness/moeoIncrEvalSingleObjectivizer.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/fitness/moeoMetricFitnessAssignment.h b/moeo/src/scalarStuffs/fitness/moeoMetricFitnessAssignment.h index f5c3e5549..206a2ea7c 100644 --- a/moeo/src/scalarStuffs/fitness/moeoMetricFitnessAssignment.h +++ b/moeo/src/scalarStuffs/fitness/moeoMetricFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/fitness/moeoWeightedChebychevMetricFitnessAssignment.h b/moeo/src/scalarStuffs/fitness/moeoWeightedChebychevMetricFitnessAssignment.h index da7b3e56a..4a4a74f7f 100644 --- a/moeo/src/scalarStuffs/fitness/moeoWeightedChebychevMetricFitnessAssignment.h +++ b/moeo/src/scalarStuffs/fitness/moeoWeightedChebychevMetricFitnessAssignment.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoAnytimeWeightStrategy.h b/moeo/src/scalarStuffs/weighting/moeoAnytimeWeightStrategy.h index 83ee36883..64b0ea7cd 100644 --- a/moeo/src/scalarStuffs/weighting/moeoAnytimeWeightStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoAnytimeWeightStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoAugmentedQexploreWeightStrategy.h b/moeo/src/scalarStuffs/weighting/moeoAugmentedQexploreWeightStrategy.h index 0db3f34b0..04993e23b 100644 --- a/moeo/src/scalarStuffs/weighting/moeoAugmentedQexploreWeightStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoAugmentedQexploreWeightStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoDichoWeightStrategy.h b/moeo/src/scalarStuffs/weighting/moeoDichoWeightStrategy.h index cacfa3273..ccd2ac558 100644 --- a/moeo/src/scalarStuffs/weighting/moeoDichoWeightStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoDichoWeightStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * - * ParadisEO WebSite : http://paradiseo.gforge.inria.fr - * Contact: paradiseo-help@lists.gforge.inria.fr + * ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + * Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoDummyRefPointStrategy.h b/moeo/src/scalarStuffs/weighting/moeoDummyRefPointStrategy.h index bd3142cd2..1050f9631 100644 --- a/moeo/src/scalarStuffs/weighting/moeoDummyRefPointStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoDummyRefPointStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoDummyWeightStrategy.h b/moeo/src/scalarStuffs/weighting/moeoDummyWeightStrategy.h index 5aefd2872..d76de5f0f 100644 --- a/moeo/src/scalarStuffs/weighting/moeoDummyWeightStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoDummyWeightStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoFixedTimeBothDirectionWeightStrategy.h b/moeo/src/scalarStuffs/weighting/moeoFixedTimeBothDirectionWeightStrategy.h index a67489b28..8f7816c9f 100644 --- a/moeo/src/scalarStuffs/weighting/moeoFixedTimeBothDirectionWeightStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoFixedTimeBothDirectionWeightStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoFixedTimeOneDirectionWeightStrategy.h b/moeo/src/scalarStuffs/weighting/moeoFixedTimeOneDirectionWeightStrategy.h index 60d615a60..d8d45fd5d 100644 --- a/moeo/src/scalarStuffs/weighting/moeoFixedTimeOneDirectionWeightStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoFixedTimeOneDirectionWeightStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoQexploreWeightStrategy.h b/moeo/src/scalarStuffs/weighting/moeoQexploreWeightStrategy.h index b79e8bfde..20b29e585 100644 --- a/moeo/src/scalarStuffs/weighting/moeoQexploreWeightStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoQexploreWeightStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoRandWeightStrategy.h b/moeo/src/scalarStuffs/weighting/moeoRandWeightStrategy.h index 582cf27f7..21871650e 100644 --- a/moeo/src/scalarStuffs/weighting/moeoRandWeightStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoRandWeightStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoVariableRefPointStrategy.h b/moeo/src/scalarStuffs/weighting/moeoVariableRefPointStrategy.h index 1eb355d54..d639644a6 100644 --- a/moeo/src/scalarStuffs/weighting/moeoVariableRefPointStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoVariableRefPointStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/scalarStuffs/weighting/moeoVariableWeightStrategy.h b/moeo/src/scalarStuffs/weighting/moeoVariableWeightStrategy.h index f6a2147b3..bf7c6cfb5 100644 --- a/moeo/src/scalarStuffs/weighting/moeoVariableWeightStrategy.h +++ b/moeo/src/scalarStuffs/weighting/moeoVariableWeightStrategy.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoDetArchiveSelect.h b/moeo/src/selection/moeoDetArchiveSelect.h index c3f94d018..957457269 100644 --- a/moeo/src/selection/moeoDetArchiveSelect.h +++ b/moeo/src/selection/moeoDetArchiveSelect.h @@ -32,8 +32,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoDetTournamentSelect.h b/moeo/src/selection/moeoDetTournamentSelect.h index 24e0a451c..04e284ec4 100644 --- a/moeo/src/selection/moeoDetTournamentSelect.h +++ b/moeo/src/selection/moeoDetTournamentSelect.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoExhaustiveUnvisitedSelect.h b/moeo/src/selection/moeoExhaustiveUnvisitedSelect.h index 12b0a9ee8..17bf205de 100644 --- a/moeo/src/selection/moeoExhaustiveUnvisitedSelect.h +++ b/moeo/src/selection/moeoExhaustiveUnvisitedSelect.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoNumberUnvisitedSelect.h b/moeo/src/selection/moeoNumberUnvisitedSelect.h index 5a23843f7..4d1ccd399 100644 --- a/moeo/src/selection/moeoNumberUnvisitedSelect.h +++ b/moeo/src/selection/moeoNumberUnvisitedSelect.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoRandomSelect.h b/moeo/src/selection/moeoRandomSelect.h index c27f07c91..952e6e620 100644 --- a/moeo/src/selection/moeoRandomSelect.h +++ b/moeo/src/selection/moeoRandomSelect.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoRouletteSelect.h b/moeo/src/selection/moeoRouletteSelect.h index 3a293b151..deed482fa 100644 --- a/moeo/src/selection/moeoRouletteSelect.h +++ b/moeo/src/selection/moeoRouletteSelect.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoSelectFromPopAndArch.h b/moeo/src/selection/moeoSelectFromPopAndArch.h index a75fbad9a..916ba673f 100644 --- a/moeo/src/selection/moeoSelectFromPopAndArch.h +++ b/moeo/src/selection/moeoSelectFromPopAndArch.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoSelectOne.h b/moeo/src/selection/moeoSelectOne.h index c05e44740..18cd1b12d 100644 --- a/moeo/src/selection/moeoSelectOne.h +++ b/moeo/src/selection/moeoSelectOne.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoSelectors.h b/moeo/src/selection/moeoSelectors.h index 1b61eafad..506071063 100644 --- a/moeo/src/selection/moeoSelectors.h +++ b/moeo/src/selection/moeoSelectors.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoStochTournamentSelect.h b/moeo/src/selection/moeoStochTournamentSelect.h index c718db309..74b2753e0 100644 --- a/moeo/src/selection/moeoStochTournamentSelect.h +++ b/moeo/src/selection/moeoStochTournamentSelect.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/selection/moeoUnvisitedSelect.h b/moeo/src/selection/moeoUnvisitedSelect.h index cd0dc3759..35ec63ec7 100644 --- a/moeo/src/selection/moeoUnvisitedSelect.h +++ b/moeo/src/selection/moeoUnvisitedSelect.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/utils/moeoArchiveObjectiveVectorSavingUpdater.h b/moeo/src/utils/moeoArchiveObjectiveVectorSavingUpdater.h index 819533fe1..a4d2d5de0 100644 --- a/moeo/src/utils/moeoArchiveObjectiveVectorSavingUpdater.h +++ b/moeo/src/utils/moeoArchiveObjectiveVectorSavingUpdater.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/utils/moeoArchiveUpdater.h b/moeo/src/utils/moeoArchiveUpdater.h index f892a6f00..3aa633a9d 100644 --- a/moeo/src/utils/moeoArchiveUpdater.h +++ b/moeo/src/utils/moeoArchiveUpdater.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/utils/moeoAverageObjVecStat.h b/moeo/src/utils/moeoAverageObjVecStat.h index 86116860e..a7409946d 100644 --- a/moeo/src/utils/moeoAverageObjVecStat.h +++ b/moeo/src/utils/moeoAverageObjVecStat.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/utils/moeoBestObjVecStat.h b/moeo/src/utils/moeoBestObjVecStat.h index 604ca90dd..b7c8bc9bc 100644 --- a/moeo/src/utils/moeoBestObjVecStat.h +++ b/moeo/src/utils/moeoBestObjVecStat.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/utils/moeoBinaryMetricSavingUpdater.h b/moeo/src/utils/moeoBinaryMetricSavingUpdater.h index 0848ef8ae..cf296902c 100644 --- a/moeo/src/utils/moeoBinaryMetricSavingUpdater.h +++ b/moeo/src/utils/moeoBinaryMetricSavingUpdater.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/utils/moeoBinaryMetricStat.h b/moeo/src/utils/moeoBinaryMetricStat.h index a75ed20a2..8d4c03fee 100644 --- a/moeo/src/utils/moeoBinaryMetricStat.h +++ b/moeo/src/utils/moeoBinaryMetricStat.h @@ -16,7 +16,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Contact: http://eodev.sourceforge.net +Contact: https://nojhan.github.io/paradiseo Authors: Johann Dréo diff --git a/moeo/src/utils/moeoConvertPopToObjectiveVectors.h b/moeo/src/utils/moeoConvertPopToObjectiveVectors.h index 8eb6e5fb7..1a7bac4a4 100644 --- a/moeo/src/utils/moeoConvertPopToObjectiveVectors.h +++ b/moeo/src/utils/moeoConvertPopToObjectiveVectors.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/utils/moeoDominanceMatrix.h b/moeo/src/utils/moeoDominanceMatrix.h index 474e492f3..52554a4f7 100644 --- a/moeo/src/utils/moeoDominanceMatrix.h +++ b/moeo/src/utils/moeoDominanceMatrix.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/utils/moeoFuzzyObjectiveVectorNormalizer.h b/moeo/src/utils/moeoFuzzyObjectiveVectorNormalizer.h index 2ab71c83b..1cc03ae44 100644 --- a/moeo/src/utils/moeoFuzzyObjectiveVectorNormalizer.h +++ b/moeo/src/utils/moeoFuzzyObjectiveVectorNormalizer.h @@ -5,8 +5,8 @@ Author: Oumayma BAHRI -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ //----------------------------------------------------------------------------- diff --git a/moeo/src/utils/moeoObjVecStat.h b/moeo/src/utils/moeoObjVecStat.h index 1e0b9e2a4..5f4af595b 100644 --- a/moeo/src/utils/moeoObjVecStat.h +++ b/moeo/src/utils/moeoObjVecStat.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/src/utils/moeoObjectiveVectorNormalizer.h b/moeo/src/utils/moeoObjectiveVectorNormalizer.h index c6d158827..31d4e330d 100644 --- a/moeo/src/utils/moeoObjectiveVectorNormalizer.h +++ b/moeo/src/utils/moeoObjectiveVectorNormalizer.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/moeoTestClass.h b/moeo/test/moeoTestClass.h index 03468fe06..ddaef5ea5 100644 --- a/moeo/test/moeoTestClass.h +++ b/moeo/test/moeoTestClass.h @@ -28,8 +28,8 @@ The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. - ParadisEO WebSite : http://paradiseo.gforge.inria.fr - Contact: paradiseo-help@lists.gforge.inria.fr + ParadisEO WebSite : https://nojhan.github.io/paradiseo/ + Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moeoTestClass_h diff --git a/moeo/test/t-moeo.cpp b/moeo/test/t-moeo.cpp index 148a074bb..39a4110b2 100644 --- a/moeo/test/t-moeo.cpp +++ b/moeo/test/t-moeo.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeo2DMinHypervolumeArchive.cpp b/moeo/test/t-moeo2DMinHypervolumeArchive.cpp index 994a9a4ea..47733ef7b 100644 --- a/moeo/test/t-moeo2DMinHypervolumeArchive.cpp +++ b/moeo/test/t-moeo2DMinHypervolumeArchive.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoASEEA.cpp b/moeo/test/t-moeoASEEA.cpp index 53763359c..ff667b3b7 100644 --- a/moeo/test/t-moeoASEEA.cpp +++ b/moeo/test/t-moeoASEEA.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoASFAMetric.cpp b/moeo/test/t-moeoASFAMetric.cpp index bc8b89a86..159e3de8e 100644 --- a/moeo/test/t-moeoASFAMetric.cpp +++ b/moeo/test/t-moeoASFAMetric.cpp @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoASFAOrMetric.cpp b/moeo/test/t-moeoASFAOrMetric.cpp index d0dca6dde..8383f3718 100644 --- a/moeo/test/t-moeoASFAOrMetric.cpp +++ b/moeo/test/t-moeoASFAOrMetric.cpp @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoAchievementFitnessAssignment.cpp b/moeo/test/t-moeoAchievementFitnessAssignment.cpp index c8a7c3060..74cd566fa 100644 --- a/moeo/test/t-moeoAchievementFitnessAssignment.cpp +++ b/moeo/test/t-moeoAchievementFitnessAssignment.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoAggregationFitnessAssignment.cpp b/moeo/test/t-moeoAggregationFitnessAssignment.cpp index 294397aed..595acfff3 100644 --- a/moeo/test/t-moeoAggregationFitnessAssignment.cpp +++ b/moeo/test/t-moeoAggregationFitnessAssignment.cpp @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoAggregativeComparator.cpp b/moeo/test/t-moeoAggregativeComparator.cpp index 9f681919d..e9abb257d 100644 --- a/moeo/test/t-moeoAggregativeComparator.cpp +++ b/moeo/test/t-moeoAggregativeComparator.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoAggregativeFitnessAssignment.cpp b/moeo/test/t-moeoAggregativeFitnessAssignment.cpp index f264f89e4..dc7cd313b 100644 --- a/moeo/test/t-moeoAggregativeFitnessAssignment.cpp +++ b/moeo/test/t-moeoAggregativeFitnessAssignment.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoBitVector.cpp b/moeo/test/t-moeoBitVector.cpp index 0673f68cc..cb084f9f9 100644 --- a/moeo/test/t-moeoBitVector.cpp +++ b/moeo/test/t-moeoBitVector.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoBoundedArchive.cpp b/moeo/test/t-moeoBoundedArchive.cpp index e8a1833b0..38f88e167 100644 --- a/moeo/test/t-moeoBoundedArchive.cpp +++ b/moeo/test/t-moeoBoundedArchive.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoChebyshevMetric.cpp b/moeo/test/t-moeoChebyshevMetric.cpp index 583043bb6..04f15cc55 100644 --- a/moeo/test/t-moeoChebyshevMetric.cpp +++ b/moeo/test/t-moeoChebyshevMetric.cpp @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoChebyshevOrientedMetric.cpp b/moeo/test/t-moeoChebyshevOrientedMetric.cpp index 28f372619..5d6599853 100644 --- a/moeo/test/t-moeoChebyshevOrientedMetric.cpp +++ b/moeo/test/t-moeoChebyshevOrientedMetric.cpp @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoConstraintFitnessAssignment.cpp b/moeo/test/t-moeoConstraintFitnessAssignment.cpp index 3df48532b..1177e9dd2 100644 --- a/moeo/test/t-moeoConstraintFitnessAssignment.cpp +++ b/moeo/test/t-moeoConstraintFitnessAssignment.cpp @@ -31,8 +31,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoCrowdingDiversityAssignment.cpp b/moeo/test/t-moeoCrowdingDiversityAssignment.cpp index c126fe2ae..252e3ad16 100644 --- a/moeo/test/t-moeoCrowdingDiversityAssignment.cpp +++ b/moeo/test/t-moeoCrowdingDiversityAssignment.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoDMLSGenUpdater.cpp b/moeo/test/t-moeoDMLSGenUpdater.cpp index 7bc53ed09..b9f2a4cfa 100644 --- a/moeo/test/t-moeoDMLSGenUpdater.cpp +++ b/moeo/test/t-moeoDMLSGenUpdater.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include "moeoTestClass.h" diff --git a/moeo/test/t-moeoDMLSMonOp.cpp b/moeo/test/t-moeoDMLSMonOp.cpp index 105c5662c..725890a62 100644 --- a/moeo/test/t-moeoDMLSMonOp.cpp +++ b/moeo/test/t-moeoDMLSMonOp.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/moeo/test/t-moeoDetArchiveSelect.cpp b/moeo/test/t-moeoDetArchiveSelect.cpp index 4bbbf8fa4..035122834 100644 --- a/moeo/test/t-moeoDetArchiveSelect.cpp +++ b/moeo/test/t-moeoDetArchiveSelect.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoDiversityThenFitnessComparator.cpp b/moeo/test/t-moeoDiversityThenFitnessComparator.cpp index 728549055..d73fad7c6 100644 --- a/moeo/test/t-moeoDiversityThenFitnessComparator.cpp +++ b/moeo/test/t-moeoDiversityThenFitnessComparator.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoDominanceCountFitnessAssignment.cpp b/moeo/test/t-moeoDominanceCountFitnessAssignment.cpp index d4ff9d6d5..a277dd9e2 100644 --- a/moeo/test/t-moeoDominanceCountFitnessAssignment.cpp +++ b/moeo/test/t-moeoDominanceCountFitnessAssignment.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoDominanceCountRankingFitnessAssignment.cpp b/moeo/test/t-moeoDominanceCountRankingFitnessAssignment.cpp index 09bf7eef0..d47449054 100644 --- a/moeo/test/t-moeoDominanceCountRankingFitnessAssignment.cpp +++ b/moeo/test/t-moeoDominanceCountRankingFitnessAssignment.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoDominanceDepthFitnessAssignment.cpp b/moeo/test/t-moeoDominanceDepthFitnessAssignment.cpp index 1282bcdc8..d74fada9a 100644 --- a/moeo/test/t-moeoDominanceDepthFitnessAssignment.cpp +++ b/moeo/test/t-moeoDominanceDepthFitnessAssignment.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoDominanceMatrix.cpp b/moeo/test/t-moeoDominanceMatrix.cpp index 0c837fd97..f3e11dd03 100644 --- a/moeo/test/t-moeoDominanceMatrix.cpp +++ b/moeo/test/t-moeoDominanceMatrix.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoDominanceRankFitnessAssignment.cpp b/moeo/test/t-moeoDominanceRankFitnessAssignment.cpp index f392f82ed..c80922704 100644 --- a/moeo/test/t-moeoDominanceRankFitnessAssignment.cpp +++ b/moeo/test/t-moeoDominanceRankFitnessAssignment.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoEasyEA.cpp b/moeo/test/t-moeoEasyEA.cpp index 0210cb5de..4552cd077 100644 --- a/moeo/test/t-moeoEasyEA.cpp +++ b/moeo/test/t-moeoEasyEA.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoEpsilonHyperboxArchive.cpp b/moeo/test/t-moeoEpsilonHyperboxArchive.cpp index 2106e76fc..c9f07caba 100644 --- a/moeo/test/t-moeoEpsilonHyperboxArchive.cpp +++ b/moeo/test/t-moeoEpsilonHyperboxArchive.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoEpsilonObjectiveVectorComparator.cpp b/moeo/test/t-moeoEpsilonObjectiveVectorComparator.cpp index 8c48bbb26..70bff3ef8 100644 --- a/moeo/test/t-moeoEpsilonObjectiveVectorComparator.cpp +++ b/moeo/test/t-moeoEpsilonObjectiveVectorComparator.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoExhaustiveNeighborhoodExplorer.cpp b/moeo/test/t-moeoExhaustiveNeighborhoodExplorer.cpp index 3d06060c8..86624324f 100644 --- a/moeo/test/t-moeoExhaustiveNeighborhoodExplorer.cpp +++ b/moeo/test/t-moeoExhaustiveNeighborhoodExplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include "moeoTestClass.h" diff --git a/moeo/test/t-moeoExhaustiveUnvisitedSelect.cpp b/moeo/test/t-moeoExhaustiveUnvisitedSelect.cpp index 84c6263f0..025aa422d 100644 --- a/moeo/test/t-moeoExhaustiveUnvisitedSelect.cpp +++ b/moeo/test/t-moeoExhaustiveUnvisitedSelect.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/moeo/test/t-moeoExpBinaryIndicatorBasedFitnessAssignment.cpp b/moeo/test/t-moeoExpBinaryIndicatorBasedFitnessAssignment.cpp index 0385b73c1..fb9e2d8bc 100644 --- a/moeo/test/t-moeoExpBinaryIndicatorBasedFitnessAssignment.cpp +++ b/moeo/test/t-moeoExpBinaryIndicatorBasedFitnessAssignment.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoFirstImprovingNeighborhoodExplorer.cpp b/moeo/test/t-moeoFirstImprovingNeighborhoodExplorer.cpp index 2cc031fd1..3d7d2b684 100644 --- a/moeo/test/t-moeoFirstImprovingNeighborhoodExplorer.cpp +++ b/moeo/test/t-moeoFirstImprovingNeighborhoodExplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include "moeoTestClass.h" diff --git a/moeo/test/t-moeoFitDivBoundedArchive.cpp b/moeo/test/t-moeoFitDivBoundedArchive.cpp index 222b4ca0e..1a1778394 100644 --- a/moeo/test/t-moeoFitDivBoundedArchive.cpp +++ b/moeo/test/t-moeoFitDivBoundedArchive.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoFitnessThenDiversityComparator.cpp b/moeo/test/t-moeoFitnessThenDiversityComparator.cpp index e7b69ba3e..e5681975a 100644 --- a/moeo/test/t-moeoFitnessThenDiversityComparator.cpp +++ b/moeo/test/t-moeoFitnessThenDiversityComparator.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoHyperVolumeDifferenceMetric.cpp b/moeo/test/t-moeoHyperVolumeDifferenceMetric.cpp index d9a6f9b2c..d257ef4dd 100644 --- a/moeo/test/t-moeoHyperVolumeDifferenceMetric.cpp +++ b/moeo/test/t-moeoHyperVolumeDifferenceMetric.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoHyperVolumeMetric.cpp b/moeo/test/t-moeoHyperVolumeMetric.cpp index 455af0f6c..563864d12 100644 --- a/moeo/test/t-moeoHyperVolumeMetric.cpp +++ b/moeo/test/t-moeoHyperVolumeMetric.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoHypervolumeBinaryMetric.cpp b/moeo/test/t-moeoHypervolumeBinaryMetric.cpp index 605affe6b..01b189c8d 100644 --- a/moeo/test/t-moeoHypervolumeBinaryMetric.cpp +++ b/moeo/test/t-moeoHypervolumeBinaryMetric.cpp @@ -28,8 +28,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoIBEA.cpp b/moeo/test/t-moeoIBEA.cpp index 564157c5d..a9078573d 100644 --- a/moeo/test/t-moeoIBEA.cpp +++ b/moeo/test/t-moeoIBEA.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoImprOnlyBoundedArchive.cpp b/moeo/test/t-moeoImprOnlyBoundedArchive.cpp index 483e3eaa3..63817186a 100644 --- a/moeo/test/t-moeoImprOnlyBoundedArchive.cpp +++ b/moeo/test/t-moeoImprOnlyBoundedArchive.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoIntVector.cpp b/moeo/test/t-moeoIntVector.cpp index 51f3f105a..facb3a262 100644 --- a/moeo/test/t-moeoIntVector.cpp +++ b/moeo/test/t-moeoIntVector.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoMOGA.cpp b/moeo/test/t-moeoMOGA.cpp index 81ded7713..0be95a7c1 100644 --- a/moeo/test/t-moeoMOGA.cpp +++ b/moeo/test/t-moeoMOGA.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoMax3Obj.cpp b/moeo/test/t-moeoMax3Obj.cpp index c638d0ed6..71339e669 100644 --- a/moeo/test/t-moeoMax3Obj.cpp +++ b/moeo/test/t-moeoMax3Obj.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoNSGA.cpp b/moeo/test/t-moeoNSGA.cpp index 779681e24..73b0f373b 100644 --- a/moeo/test/t-moeoNSGA.cpp +++ b/moeo/test/t-moeoNSGA.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoNSGAII.cpp b/moeo/test/t-moeoNSGAII.cpp index 3827e2800..1c9379793 100644 --- a/moeo/test/t-moeoNSGAII.cpp +++ b/moeo/test/t-moeoNSGAII.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoNearestNeighborDiversityAssignment.cpp b/moeo/test/t-moeoNearestNeighborDiversityAssignment.cpp index 58969730b..a0f5f0fdc 100644 --- a/moeo/test/t-moeoNearestNeighborDiversityAssignment.cpp +++ b/moeo/test/t-moeoNearestNeighborDiversityAssignment.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoNoDesimprovingNeighborhoodExplorer.cpp b/moeo/test/t-moeoNoDesimprovingNeighborhoodExplorer.cpp index 90d53d7e1..ce1e2c693 100644 --- a/moeo/test/t-moeoNoDesimprovingNeighborhoodExplorer.cpp +++ b/moeo/test/t-moeoNoDesimprovingNeighborhoodExplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/moeo/test/t-moeoNumberUnvisitedSelect.cpp b/moeo/test/t-moeoNumberUnvisitedSelect.cpp index 64e5d2f92..419d15787 100644 --- a/moeo/test/t-moeoNumberUnvisitedSelect.cpp +++ b/moeo/test/t-moeoNumberUnvisitedSelect.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/moeo/test/t-moeoPLS1.cpp b/moeo/test/t-moeoPLS1.cpp index 4d6b1adb2..96823c737 100644 --- a/moeo/test/t-moeoPLS1.cpp +++ b/moeo/test/t-moeoPLS1.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/moeo/test/t-moeoPLS2.cpp b/moeo/test/t-moeoPLS2.cpp index 1f343ae8f..de2afda34 100644 --- a/moeo/test/t-moeoPLS2.cpp +++ b/moeo/test/t-moeoPLS2.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/moeo/test/t-moeoParetoObjectiveVectorComparator.cpp b/moeo/test/t-moeoParetoObjectiveVectorComparator.cpp index a37b3eb8c..c7d8d746a 100644 --- a/moeo/test/t-moeoParetoObjectiveVectorComparator.cpp +++ b/moeo/test/t-moeoParetoObjectiveVectorComparator.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoQuadTreeArchive.cpp b/moeo/test/t-moeoQuadTreeArchive.cpp index ab83327d7..ed3fffa22 100644 --- a/moeo/test/t-moeoQuadTreeArchive.cpp +++ b/moeo/test/t-moeoQuadTreeArchive.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoRealVector.cpp b/moeo/test/t-moeoRealVector.cpp index 58d29a491..44ece5ee7 100644 --- a/moeo/test/t-moeoRealVector.cpp +++ b/moeo/test/t-moeoRealVector.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoSEEA.cpp b/moeo/test/t-moeoSEEA.cpp index 648ca0585..10686213e 100644 --- a/moeo/test/t-moeoSEEA.cpp +++ b/moeo/test/t-moeoSEEA.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoSPEA2.cpp b/moeo/test/t-moeoSPEA2.cpp index 861977c55..d24f39de1 100644 --- a/moeo/test/t-moeoSPEA2.cpp +++ b/moeo/test/t-moeoSPEA2.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoSPEA2Archive.cpp b/moeo/test/t-moeoSPEA2Archive.cpp index df3af2d3a..2f05dca66 100644 --- a/moeo/test/t-moeoSPEA2Archive.cpp +++ b/moeo/test/t-moeoSPEA2Archive.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoSharingDiversityAssignment.cpp b/moeo/test/t-moeoSharingDiversityAssignment.cpp index 81232617a..fb3f7e689 100644 --- a/moeo/test/t-moeoSharingDiversityAssignment.cpp +++ b/moeo/test/t-moeoSharingDiversityAssignment.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoSimpleSubNeighborhoodExplorer.cpp b/moeo/test/t-moeoSimpleSubNeighborhoodExplorer.cpp index ab4e12fe3..34b702fe5 100644 --- a/moeo/test/t-moeoSimpleSubNeighborhoodExplorer.cpp +++ b/moeo/test/t-moeoSimpleSubNeighborhoodExplorer.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #include diff --git a/moeo/test/t-moeoStrictObjectiveVectorComparator.cpp b/moeo/test/t-moeoStrictObjectiveVectorComparator.cpp index f23ac84f2..2f7c278be 100644 --- a/moeo/test/t-moeoStrictObjectiveVectorComparator.cpp +++ b/moeo/test/t-moeoStrictObjectiveVectorComparator.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoUnboundedArchive.cpp b/moeo/test/t-moeoUnboundedArchive.cpp index 1193b5f23..b0467f069 100644 --- a/moeo/test/t-moeoUnboundedArchive.cpp +++ b/moeo/test/t-moeoUnboundedArchive.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoVecVsVecAdditiveEpsilonBinaryMetric.cpp b/moeo/test/t-moeoVecVsVecAdditiveEpsilonBinaryMetric.cpp index 99901beb2..7832ee164 100644 --- a/moeo/test/t-moeoVecVsVecAdditiveEpsilonBinaryMetric.cpp +++ b/moeo/test/t-moeoVecVsVecAdditiveEpsilonBinaryMetric.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoVecVsVecMultiplicativeEpsilonBinaryMetric.cpp b/moeo/test/t-moeoVecVsVecMultiplicativeEpsilonBinaryMetric.cpp index 880794e01..a179522f4 100644 --- a/moeo/test/t-moeoVecVsVecMultiplicativeEpsilonBinaryMetric.cpp +++ b/moeo/test/t-moeoVecVsVecMultiplicativeEpsilonBinaryMetric.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/test/t-moeoWeakObjectiveVectorComparator.cpp b/moeo/test/t-moeoWeakObjectiveVectorComparator.cpp index f193b1ee7..5c25f1ddb 100644 --- a/moeo/test/t-moeoWeakObjectiveVectorComparator.cpp +++ b/moeo/test/t-moeoWeakObjectiveVectorComparator.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/Lesson1/Sch1.cpp b/moeo/tutorial/Lesson1/Sch1.cpp index 519105b86..32fd98678 100644 --- a/moeo/tutorial/Lesson1/Sch1.cpp +++ b/moeo/tutorial/Lesson1/Sch1.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/Lesson2/FlowShopEA.cpp b/moeo/tutorial/Lesson2/FlowShopEA.cpp index 445f4b227..17e33789d 100644 --- a/moeo/tutorial/Lesson2/FlowShopEA.cpp +++ b/moeo/tutorial/Lesson2/FlowShopEA.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/Lesson3/FlowShopEA2.cpp b/moeo/tutorial/Lesson3/FlowShopEA2.cpp index 1985eb75e..f46341efa 100644 --- a/moeo/tutorial/Lesson3/FlowShopEA2.cpp +++ b/moeo/tutorial/Lesson3/FlowShopEA2.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/Lesson4/FlowShopDMLS.cpp b/moeo/tutorial/Lesson4/FlowShopDMLS.cpp index a84a33dcf..4d1af123f 100644 --- a/moeo/tutorial/Lesson4/FlowShopDMLS.cpp +++ b/moeo/tutorial/Lesson4/FlowShopDMLS.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShop.cpp b/moeo/tutorial/examples/flowshop/FlowShop.cpp index 0bf5dfe89..3fe8b31a8 100644 --- a/moeo/tutorial/examples/flowshop/FlowShop.cpp +++ b/moeo/tutorial/examples/flowshop/FlowShop.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShop.h b/moeo/tutorial/examples/flowshop/FlowShop.h index 11397b551..b8c0c8243 100644 --- a/moeo/tutorial/examples/flowshop/FlowShop.h +++ b/moeo/tutorial/examples/flowshop/FlowShop.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopBenchmarkParser.cpp b/moeo/tutorial/examples/flowshop/FlowShopBenchmarkParser.cpp index 7b21f3661..75ae30cca 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopBenchmarkParser.cpp +++ b/moeo/tutorial/examples/flowshop/FlowShopBenchmarkParser.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopBenchmarkParser.h b/moeo/tutorial/examples/flowshop/FlowShopBenchmarkParser.h index 88f6538ed..8d9bca5b5 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopBenchmarkParser.h +++ b/moeo/tutorial/examples/flowshop/FlowShopBenchmarkParser.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopEval.cpp b/moeo/tutorial/examples/flowshop/FlowShopEval.cpp index 268012931..b1bfb1782 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopEval.cpp +++ b/moeo/tutorial/examples/flowshop/FlowShopEval.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopEval.h b/moeo/tutorial/examples/flowshop/FlowShopEval.h index 2eeb83678..d075e51bc 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopEval.h +++ b/moeo/tutorial/examples/flowshop/FlowShopEval.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopInit.h b/moeo/tutorial/examples/flowshop/FlowShopInit.h index d21072453..197053509 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopInit.h +++ b/moeo/tutorial/examples/flowshop/FlowShopInit.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopObjectiveVector.h b/moeo/tutorial/examples/flowshop/FlowShopObjectiveVector.h index 65814085f..857b5233c 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopObjectiveVector.h +++ b/moeo/tutorial/examples/flowshop/FlowShopObjectiveVector.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopObjectiveVectorTraits.cpp b/moeo/tutorial/examples/flowshop/FlowShopObjectiveVectorTraits.cpp index 829bfb833..e25d8b357 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopObjectiveVectorTraits.cpp +++ b/moeo/tutorial/examples/flowshop/FlowShopObjectiveVectorTraits.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopObjectiveVectorTraits.h b/moeo/tutorial/examples/flowshop/FlowShopObjectiveVectorTraits.h index b95d6f2ea..1b043607e 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopObjectiveVectorTraits.h +++ b/moeo/tutorial/examples/flowshop/FlowShopObjectiveVectorTraits.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopOpCrossoverQuad.cpp b/moeo/tutorial/examples/flowshop/FlowShopOpCrossoverQuad.cpp index 5b64c7e41..081e48f50 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopOpCrossoverQuad.cpp +++ b/moeo/tutorial/examples/flowshop/FlowShopOpCrossoverQuad.cpp @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopOpCrossoverQuad.h b/moeo/tutorial/examples/flowshop/FlowShopOpCrossoverQuad.h index 79fe70128..9bd701c1f 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopOpCrossoverQuad.h +++ b/moeo/tutorial/examples/flowshop/FlowShopOpCrossoverQuad.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopOpMutationExchange.h b/moeo/tutorial/examples/flowshop/FlowShopOpMutationExchange.h index 51801d9d9..bac94e6c8 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopOpMutationExchange.h +++ b/moeo/tutorial/examples/flowshop/FlowShopOpMutationExchange.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/FlowShopOpMutationShift.h b/moeo/tutorial/examples/flowshop/FlowShopOpMutationShift.h index 523bb88f0..ddc93b3fd 100644 --- a/moeo/tutorial/examples/flowshop/FlowShopOpMutationShift.h +++ b/moeo/tutorial/examples/flowshop/FlowShopOpMutationShift.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/make_eval_FlowShop.h b/moeo/tutorial/examples/flowshop/make_eval_FlowShop.h index 6836b2d6b..25d082467 100644 --- a/moeo/tutorial/examples/flowshop/make_eval_FlowShop.h +++ b/moeo/tutorial/examples/flowshop/make_eval_FlowShop.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/make_genotype_FlowShop.h b/moeo/tutorial/examples/flowshop/make_genotype_FlowShop.h index d1af7d8e4..29de38a74 100644 --- a/moeo/tutorial/examples/flowshop/make_genotype_FlowShop.h +++ b/moeo/tutorial/examples/flowshop/make_genotype_FlowShop.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/moeo/tutorial/examples/flowshop/make_op_FlowShop.h b/moeo/tutorial/examples/flowshop/make_op_FlowShop.h index 428fe1d3a..f61ce7524 100644 --- a/moeo/tutorial/examples/flowshop/make_op_FlowShop.h +++ b/moeo/tutorial/examples/flowshop/make_op_FlowShop.h @@ -29,8 +29,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/doc/moeo.doxyfile.cmake b/problems/DTLZ/doc/moeo.doxyfile.cmake index cf02db64b..1f20986b1 100644 --- a/problems/DTLZ/doc/moeo.doxyfile.cmake +++ b/problems/DTLZ/doc/moeo.doxyfile.cmake @@ -199,7 +199,7 @@ SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- -TAGFILES = @EO_BIN_DIR@/doc/eo.doxytag=http://eodev.sourceforge.net/eo/doc/html +TAGFILES = @EO_BIN_DIR@/doc/eo.doxytag=https://nojhan.github.io/paradiseo/eo/doc/html GENERATE_TAGFILE = @CMAKE_BINARY_DIR@/doc/moeo.doxytag ALLEXTERNALS = NO EXTERNAL_GROUPS = YES diff --git a/problems/DTLZ/src/DTLZ.cpp b/problems/DTLZ/src/DTLZ.cpp index 7a2606e51..1777f63a9 100644 --- a/problems/DTLZ/src/DTLZ.cpp +++ b/problems/DTLZ/src/DTLZ.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ.h b/problems/DTLZ/src/DTLZ.h index 0b20bc7d3..a36c13fcb 100644 --- a/problems/DTLZ/src/DTLZ.h +++ b/problems/DTLZ/src/DTLZ.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ1Eval.cpp b/problems/DTLZ/src/DTLZ1Eval.cpp index 9457f0390..944432c4a 100644 --- a/problems/DTLZ/src/DTLZ1Eval.cpp +++ b/problems/DTLZ/src/DTLZ1Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ1Eval.h b/problems/DTLZ/src/DTLZ1Eval.h index 37471612f..1b1736565 100644 --- a/problems/DTLZ/src/DTLZ1Eval.h +++ b/problems/DTLZ/src/DTLZ1Eval.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ2Eval.cpp b/problems/DTLZ/src/DTLZ2Eval.cpp index e9e8ca29b..83fc35d80 100644 --- a/problems/DTLZ/src/DTLZ2Eval.cpp +++ b/problems/DTLZ/src/DTLZ2Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ2Eval.h b/problems/DTLZ/src/DTLZ2Eval.h index 806275548..ed9e907ee 100644 --- a/problems/DTLZ/src/DTLZ2Eval.h +++ b/problems/DTLZ/src/DTLZ2Eval.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ3Eval.cpp b/problems/DTLZ/src/DTLZ3Eval.cpp index e856be289..84b7a7a76 100644 --- a/problems/DTLZ/src/DTLZ3Eval.cpp +++ b/problems/DTLZ/src/DTLZ3Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ3Eval.h b/problems/DTLZ/src/DTLZ3Eval.h index 3326e9ea8..091f92d16 100644 --- a/problems/DTLZ/src/DTLZ3Eval.h +++ b/problems/DTLZ/src/DTLZ3Eval.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ4Eval.cpp b/problems/DTLZ/src/DTLZ4Eval.cpp index 36aef11a9..f94f73fbd 100644 --- a/problems/DTLZ/src/DTLZ4Eval.cpp +++ b/problems/DTLZ/src/DTLZ4Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ4Eval.h b/problems/DTLZ/src/DTLZ4Eval.h index 49000f23f..1d81d8ba8 100644 --- a/problems/DTLZ/src/DTLZ4Eval.h +++ b/problems/DTLZ/src/DTLZ4Eval.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ5Eval.cpp b/problems/DTLZ/src/DTLZ5Eval.cpp index e7a788bb6..b938dd289 100644 --- a/problems/DTLZ/src/DTLZ5Eval.cpp +++ b/problems/DTLZ/src/DTLZ5Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ5Eval.h b/problems/DTLZ/src/DTLZ5Eval.h index 660e3e155..438d59408 100644 --- a/problems/DTLZ/src/DTLZ5Eval.h +++ b/problems/DTLZ/src/DTLZ5Eval.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ6Eval.cpp b/problems/DTLZ/src/DTLZ6Eval.cpp index 5034d9374..09e97e10d 100644 --- a/problems/DTLZ/src/DTLZ6Eval.cpp +++ b/problems/DTLZ/src/DTLZ6Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ6Eval.h b/problems/DTLZ/src/DTLZ6Eval.h index 08e893c69..89e2a2723 100644 --- a/problems/DTLZ/src/DTLZ6Eval.h +++ b/problems/DTLZ/src/DTLZ6Eval.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ7Eval.cpp b/problems/DTLZ/src/DTLZ7Eval.cpp index 4106d87ab..76bc03406 100644 --- a/problems/DTLZ/src/DTLZ7Eval.cpp +++ b/problems/DTLZ/src/DTLZ7Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZ7Eval.h b/problems/DTLZ/src/DTLZ7Eval.h index 6437523e1..acc0ee8a3 100644 --- a/problems/DTLZ/src/DTLZ7Eval.h +++ b/problems/DTLZ/src/DTLZ7Eval.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/DTLZObjectiveVector.h b/problems/DTLZ/src/DTLZObjectiveVector.h index 94f9ff1f2..ae459bd91 100644 --- a/problems/DTLZ/src/DTLZObjectiveVector.h +++ b/problems/DTLZ/src/DTLZObjectiveVector.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/PolynomialMutation.h b/problems/DTLZ/src/PolynomialMutation.h index 871ed0b0f..05ddc1f13 100644 --- a/problems/DTLZ/src/PolynomialMutation.h +++ b/problems/DTLZ/src/PolynomialMutation.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/src/SBXCrossover.h b/problems/DTLZ/src/SBXCrossover.h index 0001818ed..eb0fdffcd 100644 --- a/problems/DTLZ/src/SBXCrossover.h +++ b/problems/DTLZ/src/SBXCrossover.h @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/test/t-DTLZ.cpp b/problems/DTLZ/test/t-DTLZ.cpp index b1d0b61d0..6ecdd8c31 100644 --- a/problems/DTLZ/test/t-DTLZ.cpp +++ b/problems/DTLZ/test/t-DTLZ.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/test/t-DTLZ1Eval.cpp b/problems/DTLZ/test/t-DTLZ1Eval.cpp index e600d6204..4cbcdb063 100644 --- a/problems/DTLZ/test/t-DTLZ1Eval.cpp +++ b/problems/DTLZ/test/t-DTLZ1Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/test/t-DTLZ2Eval.cpp b/problems/DTLZ/test/t-DTLZ2Eval.cpp index 03ecaff86..bc8d89a1c 100644 --- a/problems/DTLZ/test/t-DTLZ2Eval.cpp +++ b/problems/DTLZ/test/t-DTLZ2Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/test/t-DTLZ3Eval.cpp b/problems/DTLZ/test/t-DTLZ3Eval.cpp index 36d60eca6..0303bf793 100644 --- a/problems/DTLZ/test/t-DTLZ3Eval.cpp +++ b/problems/DTLZ/test/t-DTLZ3Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/test/t-DTLZ4Eval.cpp b/problems/DTLZ/test/t-DTLZ4Eval.cpp index 7eeb9a7f0..678d1d134 100644 --- a/problems/DTLZ/test/t-DTLZ4Eval.cpp +++ b/problems/DTLZ/test/t-DTLZ4Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/test/t-DTLZ5Eval.cpp b/problems/DTLZ/test/t-DTLZ5Eval.cpp index f258242fe..e67ceb62a 100644 --- a/problems/DTLZ/test/t-DTLZ5Eval.cpp +++ b/problems/DTLZ/test/t-DTLZ5Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/test/t-DTLZ6Eval.cpp b/problems/DTLZ/test/t-DTLZ6Eval.cpp index 86c487909..fd2683bb5 100644 --- a/problems/DTLZ/test/t-DTLZ6Eval.cpp +++ b/problems/DTLZ/test/t-DTLZ6Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/DTLZ/test/t-DTLZ7Eval.cpp b/problems/DTLZ/test/t-DTLZ7Eval.cpp index 394a45f26..d2063b51e 100644 --- a/problems/DTLZ/test/t-DTLZ7Eval.cpp +++ b/problems/DTLZ/test/t-DTLZ7Eval.cpp @@ -30,8 +30,8 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. * -* ParadisEO WebSite : http://paradiseo.gforge.inria.fr -* Contact: paradiseo-help@lists.gforge.inria.fr +* ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +* Contact: https://github.com/nojhan/paradiseo/issues * */ //----------------------------------------------------------------------------- diff --git a/problems/eval/bbRoyalRoadEval.h b/problems/eval/bbRoyalRoadEval.h index 9d861f738..e4e2b2bc4 100644 --- a/problems/eval/bbRoyalRoadEval.h +++ b/problems/eval/bbRoyalRoadEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _bbRoyalRoadEval_h diff --git a/problems/eval/longKPathEval.h b/problems/eval/longKPathEval.h index 38cd69705..2071fd47c 100644 --- a/problems/eval/longKPathEval.h +++ b/problems/eval/longKPathEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef __longKPathEval_h diff --git a/problems/eval/maxSATeval.h b/problems/eval/maxSATeval.h index 985b7d74a..60b8cb6d9 100644 --- a/problems/eval/maxSATeval.h +++ b/problems/eval/maxSATeval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _maxSATeval_h diff --git a/problems/eval/moPopSolEval.h b/problems/eval/moPopSolEval.h index a393fd0dd..6a144c7b0 100644 --- a/problems/eval/moPopSolEval.h +++ b/problems/eval/moPopSolEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _moPopSolEval_h diff --git a/problems/eval/nkLandscapesEval.h b/problems/eval/nkLandscapesEval.h index 73d490876..0f04174a8 100644 --- a/problems/eval/nkLandscapesEval.h +++ b/problems/eval/nkLandscapesEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef __nkLandscapesEval_H diff --git a/problems/eval/nkpLandscapesEval.h b/problems/eval/nkpLandscapesEval.h index 343d25d68..0b1b360a4 100644 --- a/problems/eval/nkpLandscapesEval.h +++ b/problems/eval/nkpLandscapesEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef __nkpLandscapesEval_H diff --git a/problems/eval/nkqLandscapesEval.h b/problems/eval/nkqLandscapesEval.h index 368bae969..028b1f03b 100644 --- a/problems/eval/nkqLandscapesEval.h +++ b/problems/eval/nkqLandscapesEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef __nkqLandscapesEval_H diff --git a/problems/eval/oneMaxEval.h b/problems/eval/oneMaxEval.h index e28e298ed..5acfaa88a 100644 --- a/problems/eval/oneMaxEval.h +++ b/problems/eval/oneMaxEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _oneMaxEval_h diff --git a/problems/eval/oneMaxPopEval.h b/problems/eval/oneMaxPopEval.h index ecd475ee6..b6fb11027 100644 --- a/problems/eval/oneMaxPopEval.h +++ b/problems/eval/oneMaxPopEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _oneMaxPopEval_h diff --git a/problems/eval/qapEval.h b/problems/eval/qapEval.h index df0d79303..dd866d12c 100644 --- a/problems/eval/qapEval.h +++ b/problems/eval/qapEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _qapEval_h diff --git a/problems/eval/queenEval.h b/problems/eval/queenEval.h index da8dd9ee3..f08f47099 100644 --- a/problems/eval/queenEval.h +++ b/problems/eval/queenEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _queenEval_h diff --git a/problems/eval/royalRoadEval.h b/problems/eval/royalRoadEval.h index 8e866cf48..8bad33c61 100644 --- a/problems/eval/royalRoadEval.h +++ b/problems/eval/royalRoadEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _RoyalRoadEval_h diff --git a/problems/eval/ubqpEval.h b/problems/eval/ubqpEval.h index 094030d59..109d56f2f 100644 --- a/problems/eval/ubqpEval.h +++ b/problems/eval/ubqpEval.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef _ubqpEval_h diff --git a/smp/doc/smp.doxyfile.cmake b/smp/doc/smp.doxyfile.cmake index 4b918135f..578a258bc 100644 --- a/smp/doc/smp.doxyfile.cmake +++ b/smp/doc/smp.doxyfile.cmake @@ -1296,7 +1296,7 @@ SKIP_FUNCTION_MACROS = YES # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. -TAGFILES = @SMP_BIN_DIR@/doc/smp.doxytag=http://paradiseo.gforge.inria.fr/addon/smp/doc/index.html +TAGFILES = @SMP_BIN_DIR@/doc/smp.doxytag=https://nojhan.github.io/paradiseo/ # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. diff --git a/smp/src/MWAlgo/MWAlgo.h b/smp/src/MWAlgo/MWAlgo.h index 24dc80a83..5a4bd981d 100644 --- a/smp/src/MWAlgo/MWAlgo.h +++ b/smp/src/MWAlgo/MWAlgo.h @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ #ifndef MWAlGO_H diff --git a/smp/src/MWModel.cpp b/smp/src/MWModel.cpp index 860ddbf90..60fadeac2 100644 --- a/smp/src/MWModel.cpp +++ b/smp/src/MWModel.cpp @@ -23,8 +23,8 @@ same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. -ParadisEO WebSite : http://paradiseo.gforge.inria.fr -Contact: paradiseo-help@lists.gforge.inria.fr +ParadisEO WebSite : https://nojhan.github.io/paradiseo/ +Contact: https://github.com/nojhan/paradiseo/issues */ template