File tree Expand file tree Collapse file tree 8 files changed +57
-8
lines changed
org/cicirello/experiments/mone2022 Expand file tree Collapse file tree 8 files changed +57
-8
lines changed Original file line number Diff line number Diff line change 11target /
2+ dependency-reduced-pom.xml
Original file line number Diff line number Diff line change 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>
Original file line number Diff line number Diff line change 3838import 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>
Original file line number Diff line number Diff line change 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>
Original file line number Diff line number Diff line change 4040import 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>
Original file line number Diff line number Diff line change 4040import 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>
Original file line number Diff line number Diff line change 4040import 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>
Original file line number Diff line number Diff line change 3838import 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>
You can’t perform that action at this time.
0 commit comments