Skip to content

Commit 175ece9

Browse files
committed
Added citation in javadoc comments
1 parent 7618e49 commit 175ece9

File tree

8 files changed

+57
-8
lines changed

8 files changed

+57
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
target/
2+
dependency-reduced-pom.xml

src/main/java/module-info.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@
1717
*/
1818

1919
/**
20+
* <p>Code to reproduce the experiments from the following article:</p>
2021
*
22+
* <p>Vincent A. Cicirello. 2022. <a href="https://www.cicirello.org/publications/Cicirello-MONE-2022.pdf">On
23+
* Fitness Landscape Analysis of Permutation Problems: From Distance Metrics to Mutation Operator Selection</a>,
24+
* <i>Mobile Networks and Applications</i>, 2022.
25+
* doi:<a href="https://doi.org/10.1007/s11036-022-02060-z">10.1007/s11036-022-02060-z</a></p>
2126
*
2227
* @author <a href=https://www.cicirello.org/ target=_top>Vincent A. Cicirello</a>,
2328
* <a href=https://www.cicirello.org/ target=_top>https://www.cicirello.org/</a>

src/main/java/org/cicirello/experiments/mone2022/ATSPExperiments.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,14 @@
3838
import org.cicirello.search.operators.permutations.PermutationInitializer;
3939

4040
/**
41-
* Experiments with the ATSP.
41+
* <p>Experiments with the ATSP.</p>
42+
*
43+
* <p>Code to reproduce the experiments from the following article:</p>
44+
*
45+
* <p>Vincent A. Cicirello. 2022. <a href="https://www.cicirello.org/publications/Cicirello-MONE-2022.pdf">On
46+
* Fitness Landscape Analysis of Permutation Problems: From Distance Metrics to Mutation Operator Selection</a>,
47+
* <i>Mobile Networks and Applications</i>, 2022.
48+
* doi:<a href="https://doi.org/10.1007/s11036-022-02060-z">10.1007/s11036-022-02060-z</a></p>
4249
*
4350
* @author <a href=https://www.cicirello.org/ target=_top>Vincent A. Cicirello</a>,
4451
* <a href=https://www.cicirello.org/ target=_top>https://www.cicirello.org/</a>

src/main/java/org/cicirello/experiments/mone2022/BICT2019.java

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,19 @@
2929

3030
/**
3131
* <p>This program replicates the principal component analysis (PCA), and the fitness distance corrleation
32-
* examples for the paper:<br>
33-
* V.A. Cicirello, <a href="https://www.cicirello.org/publications/cicirello2019bict.html">"Classification
32+
* examples for the paper:</p>
33+
*
34+
* <p>V.A. Cicirello, <a href="https://www.cicirello.org/publications/cicirello2019bict.html">"Classification
3435
* of Permutation Distance Metrics for Fitness Landscape Analysis,"</a>
3536
* <i>Proceedings of the 11th International Conference on Bio-inspired Information and Communication Technologies</i>,
36-
* pages 81-97. Springer Nature, March 2019. doi:10.1007/978-3-030-24202-2_7.</p>
37+
* pages 81-97. Springer Nature, March 2019. doi:<a href="https://doi.org/10.1007/978-3-030-24202-2_7">10.1007/978-3-030-24202-2_7</a></p>
38+
*
39+
* <p>This is also included in the following extended version of that paper:</p>
40+
*
41+
* <p>Vincent A. Cicirello. 2022. <a href="https://www.cicirello.org/publications/Cicirello-MONE-2022.pdf">On
42+
* Fitness Landscape Analysis of Permutation Problems: From Distance Metrics to Mutation Operator Selection</a>,
43+
* <i>Mobile Networks and Applications</i>, 2022.
44+
* doi:<a href="https://doi.org/10.1007/s11036-022-02060-z">10.1007/s11036-022-02060-z</a></p>
3745
*
3846
* @author <a href=https://www.cicirello.org/>Vincent A. Cicirello</a>,
3947
* <a href=https://www.cicirello.org/>https://www.cicirello.org/</a>

src/main/java/org/cicirello/experiments/mone2022/HaystackEMExperiments.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,14 @@
4040
import org.cicirello.permutations.distance.ExactMatchDistance;
4141

4242
/**
43-
* Experiments with the Permutation in a Haystack problem using the Exact Match Distance.
43+
* <p>Experiments with the Permutation in a Haystack problem using the Exact Match Distance.</p>
44+
*
45+
* <p>Code to reproduce the experiments from the following article:</p>
46+
*
47+
* <p>Vincent A. Cicirello. 2022. <a href="https://www.cicirello.org/publications/Cicirello-MONE-2022.pdf">On
48+
* Fitness Landscape Analysis of Permutation Problems: From Distance Metrics to Mutation Operator Selection</a>,
49+
* <i>Mobile Networks and Applications</i>, 2022.
50+
* doi:<a href="https://doi.org/10.1007/s11036-022-02060-z">10.1007/s11036-022-02060-z</a></p>
4451
*
4552
* @author <a href=https://www.cicirello.org/ target=_top>Vincent A. Cicirello</a>,
4653
* <a href=https://www.cicirello.org/ target=_top>https://www.cicirello.org/</a>

src/main/java/org/cicirello/experiments/mone2022/HaystackLeeExperiments.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,14 @@
4040
import org.cicirello.permutations.distance.LeeDistance;
4141

4242
/**
43-
* Experiments with the Permutation in a Haystack problem using the Lee Distance.
43+
* <p>Experiments with the Permutation in a Haystack problem using the Lee Distance.</p>
44+
*
45+
* <p>Code to reproduce the experiments from the following article:</p>
46+
*
47+
* <p>Vincent A. Cicirello. 2022. <a href="https://www.cicirello.org/publications/Cicirello-MONE-2022.pdf">On
48+
* Fitness Landscape Analysis of Permutation Problems: From Distance Metrics to Mutation Operator Selection</a>,
49+
* <i>Mobile Networks and Applications</i>, 2022.
50+
* doi:<a href="https://doi.org/10.1007/s11036-022-02060-z">10.1007/s11036-022-02060-z</a></p>
4451
*
4552
* @author <a href=https://www.cicirello.org/ target=_top>Vincent A. Cicirello</a>,
4653
* <a href=https://www.cicirello.org/ target=_top>https://www.cicirello.org/</a>

src/main/java/org/cicirello/experiments/mone2022/HaystackTauExperiments.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,14 @@
4040
import org.cicirello.permutations.distance.KendallTauDistance;
4141

4242
/**
43-
* Experiments with the Permutation in a Haystack problem using Kendall Tau Distance.
43+
* <p>Experiments with the Permutation in a Haystack problem using Kendall Tau Distance.</p>
44+
*
45+
* <p>Code to reproduce the experiments from the following article:</p>
46+
*
47+
* <p>Vincent A. Cicirello. 2022. <a href="https://www.cicirello.org/publications/Cicirello-MONE-2022.pdf">On
48+
* Fitness Landscape Analysis of Permutation Problems: From Distance Metrics to Mutation Operator Selection</a>,
49+
* <i>Mobile Networks and Applications</i>, 2022.
50+
* doi:<a href="https://doi.org/10.1007/s11036-022-02060-z">10.1007/s11036-022-02060-z</a></p>
4451
*
4552
* @author <a href=https://www.cicirello.org/ target=_top>Vincent A. Cicirello</a>,
4653
* <a href=https://www.cicirello.org/ target=_top>https://www.cicirello.org/</a>

src/main/java/org/cicirello/experiments/mone2022/TSPExperiments.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,14 @@
3838
import org.cicirello.search.operators.permutations.PermutationInitializer;
3939

4040
/**
41-
* Experiments with the TSP.
41+
* <p>Experiments with the TSP.</p>
42+
*
43+
* <p>Code to reproduce the experiments from the following article:</p>
44+
*
45+
* <p>Vincent A. Cicirello. 2022. <a href="https://www.cicirello.org/publications/Cicirello-MONE-2022.pdf">On
46+
* Fitness Landscape Analysis of Permutation Problems: From Distance Metrics to Mutation Operator Selection</a>,
47+
* <i>Mobile Networks and Applications</i>, 2022.
48+
* doi:<a href="https://doi.org/10.1007/s11036-022-02060-z">10.1007/s11036-022-02060-z</a></p>
4249
*
4350
* @author <a href=https://www.cicirello.org/ target=_top>Vincent A. Cicirello</a>,
4451
* <a href=https://www.cicirello.org/ target=_top>https://www.cicirello.org/</a>

0 commit comments

Comments
 (0)