Fix remaining dead URLs in extension-less headers and READMEs

Catches moeo/src/moeo, smp/src/smp, mo/src/mo (extension-less umbrella
include files missed by the glob pattern), ForRelease
(paradiseo-users@ mailing list), and problems/DTLZ/README.txt and
edo/README (wiki links).
This commit is contained in:
Eremey Valetov 2026-02-28 19:25:53 -05:00
commit 2ad34b7749
6 changed files with 17 additions and 17 deletions

View file

@ -39,7 +39,7 @@ When reaching stable versions:
- Post the message to: - Post the message to:
- EO news https://sourceforge.net/news/?group_id=9775 - EO news https://sourceforge.net/news/?group_id=9775
- EO mailing list: eodev-main@lists.sourceforge.net - EO mailing list: eodev-main@lists.sourceforge.net
- ParadisEO mailing list: paradiseo-users@lists.gforge.inria.fr - ParadisEO: https://github.com/nojhan/paradiseo/issues
- EC-digest maling list: ec-digest-l@listserv.gmu.edu - EC-digest maling list: ec-digest-l@listserv.gmu.edu
- JET mailing list: jet@inria.fr - JET mailing list: jet@inria.fr

View file

@ -9,7 +9,7 @@ On Windows write your path with double antislash (ex: C:\\Users\\...)
# Step 2 - Build process # Step 2 - Build process
------------------------ ------------------------
ParadisEO is assumed to be compiled. To download ParadisEO, please visit http://paradiseo.gforge.inria.fr/. ParadisEO is assumed to be compiled. To download ParadisEO, please visit https://nojhan.github.io/paradiseo/.
Go to the DO/build/ directory and lunch cmake: Go to the DO/build/ directory and lunch cmake:
(Unix) > cmake .. (Unix) > cmake ..
(Windows) > cmake .. -G"Visual Studio 9 2008" (Windows) > cmake .. -G"Visual Studio 9 2008"
@ -22,23 +22,23 @@ Note for windows users: if you don't use VisualStudio 9, enter the name of your
In the edo/build/ directory: In the edo/build/ directory:
(Unix) > make (Unix) > make
(Windows) Open the VisualStudio solution and compile it, compile also the target install. (Windows) Open the VisualStudio solution and compile it, compile also the target install.
You can refer to this tutorial if you don't know how to compile a solution: http://paradiseo.gforge.inria.fr/index.php?n=Paradiseo.VisualCTutorial You can refer to this tutorial if you don't know how to compile a solution: https://nojhan.github.io/paradiseo/index.php?n=Paradiseo.VisualCTutorial
# Step 4 - Execution # Step 4 - Execution
--------------------- ---------------------
A toy example is given to test the components. You can run these tests as following. A toy example is given to test the components. You can run these tests as following.
To define problem-related components for your own problem, please refer to the tutorials available on the website : http://paradiseo.gforge.inria.fr/. To define problem-related components for your own problem, please refer to the tutorials available on the website : https://nojhan.github.io/paradiseo/.
In the edo/build/ directory: In the edo/build/ directory:
(Unix) > ctest (Unix) > ctest
Windows users, please refer to this tutorial: http://paradiseo.gforge.inria.fr/index.php?n=Paradiseo.VisualCTutorial Windows users, please refer to this tutorial: https://nojhan.github.io/paradiseo/index.php?n=Paradiseo.VisualCTutorial
In the directory "application", there are several directory such as eda which instantiate EDA solver. In the directory "application", there are several directory such as eda which instantiate EDA solver.
(Unix) After compilation you can run the binary "build/eda" and see results. Parameters can be modified from command line. (Unix) After compilation you can run the binary "build/eda" and see results. Parameters can be modified from command line.
(Windows) Add argument "eda.param" and execute the corresponding algorithms. (Windows) Add argument "eda.param" and execute the corresponding algorithms.
Windows users, please refer to this tutorial: http://paradiseo.gforge.inria.fr/index.php?n=Paradiseo.VisualCTutorial Windows users, please refer to this tutorial: https://nojhan.github.io/paradiseo/index.php?n=Paradiseo.VisualCTutorial
# Documentation # Documentation

View file

@ -28,8 +28,8 @@
The fact that you are presently reading this means that you have had The fact that you are presently reading this means that you have had
knowledge of the CeCILL license and that you accept its terms. knowledge of the CeCILL license and that you accept its terms.
ParadisEO WebSite : http://paradiseo.gforge.inria.fr ParadisEO WebSite : https://nojhan.github.io/paradiseo/
Contact: paradiseo-help@lists.gforge.inria.fr Contact: https://github.com/nojhan/paradiseo/issues
*/ */
#ifndef __newmo #ifndef __newmo

View file

@ -29,8 +29,8 @@
* The fact that you are presently reading this means that you have had * The fact that you are presently reading this means that you have had
* knowledge of the CeCILL license and that you accept its terms. * knowledge of the CeCILL license and that you accept its terms.
* *
* ParadisEO WebSite : http://paradiseo.gforge.inria.fr * ParadisEO WebSite : https://nojhan.github.io/paradiseo/
* Contact: paradiseo-help@lists.gforge.inria.fr * Contact: https://github.com/nojhan/paradiseo/issues
* *
*/ */
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View file

@ -8,7 +8,7 @@ On Windows write your path with double antislash (ex: C:\\Users\\...)
# Step 2 - Build process # Step 2 - Build process
------------------------ ------------------------
ParadisEO is assumed to be compiled. To download ParadisEO, please visit http://paradiseo.gforge.inria.fr/. ParadisEO is assumed to be compiled. To download ParadisEO, please visit https://nojhan.github.io/paradiseo/.
Go to the DLTZ/build/ directory and lunch cmake: Go to the DLTZ/build/ directory and lunch cmake:
(Unix) > cmake .. (Unix) > cmake ..
(Windows) > cmake .. -G"Visual Studio 9 2008" (Windows) > cmake .. -G"Visual Studio 9 2008"
@ -21,23 +21,23 @@ Note for windows users: if you don't use VisualStudio 9, enter the name of your
In the DTLZ/build/ directory: In the DTLZ/build/ directory:
(Unix) > make (Unix) > make
(Windows) Open the VisualStudio solution and compile it (Windows). (Windows) Open the VisualStudio solution and compile it (Windows).
You can refer to this tutorial if you don't know how to compile a solution: http://paradiseo.gforge.inria.fr/index.php?n=Paradiseo.VisualCTutorial You can refer to this tutorial if you don't know how to compile a solution: https://nojhan.github.io/paradiseo/index.php?n=Paradiseo.VisualCTutorial
# Step 4 - Execution # Step 4 - Execution
--------------------- ---------------------
A toy example is given to test the components. You can run these tests as following. A toy example is given to test the components. You can run these tests as following.
To define problem-related components for your own problem, please refer to the tutorials available on the website : http://paradiseo.gforge.inria.fr/. To define problem-related components for your own problem, please refer to the tutorials available on the website : https://nojhan.github.io/paradiseo/.
In the DTLZ/build/ directory: In the DTLZ/build/ directory:
(Unix) > ctest (Unix) > ctest
Windows users, please refer to this tutorial: http://paradiseo.gforge.inria.fr/index.php?n=Paradiseo.VisualCTutorial Windows users, please refer to this tutorial: https://nojhan.github.io/paradiseo/index.php?n=Paradiseo.VisualCTutorial
In the directory "application", there are three ".cpp" which instantiate IBEA, NSGAII and SPEA2 on ZDT problems. To change of algorithms, you can compare these three files and see the few changes to do. In the directory "application", there are three ".cpp" which instantiate IBEA, NSGAII and SPEA2 on ZDT problems. To change of algorithms, you can compare these three files and see the few changes to do.
(Unix) After compilation you can run the script "DTLZ/run.sh" and see results in "IBEA.out", "NSGAII.out" and "SPEA2.out". Parameters can be modified in the script. (Unix) After compilation you can run the script "DTLZ/run.sh" and see results in "IBEA.out", "NSGAII.out" and "SPEA2.out". Parameters can be modified in the script.
(Windows) Add argument "IBEA.param", "SPEA2.param" or "NSGAII.param" and execute the corresponding algorithms. (Windows) Add argument "IBEA.param", "SPEA2.param" or "NSGAII.param" and execute the corresponding algorithms.
Windows users, please refer to this tutorial: http://paradiseo.gforge.inria.fr/index.php?n=Paradiseo.VisualCTutorial Windows users, please refer to this tutorial: https://nojhan.github.io/paradiseo/index.php?n=Paradiseo.VisualCTutorial
# Documentation # Documentation
--------------- ---------------

View file

@ -23,8 +23,8 @@ same conditions as regards security.
The fact that you are presently reading this means that you have had The fact that you are presently reading this means that you have had
knowledge of the CeCILL license and that you accept its terms. knowledge of the CeCILL license and that you accept its terms.
ParadisEO WebSite : http://paradiseo.gforge.inria.fr ParadisEO WebSite : https://nojhan.github.io/paradiseo/
Contact: paradiseo-help@lists.gforge.inria.fr Contact: https://github.com/nojhan/paradiseo/issues
*/ */
#ifndef SMP_INCLUDE #ifndef SMP_INCLUDE