Skip to content

Commit 94012a1

Browse files
authored
Merge pull request #17 from cicirello/doc-add-citation
Added citation to MONE article in README and in javadoc comments
2 parents 7618e49 + 89dd570 commit 94012a1

File tree

11 files changed

+65
-10
lines changed

11 files changed

+65
-10
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

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ Copyright © 2018-2019, 2022 Vincent A. Cicirello
55
This repository contains code to reproduce the experiments, and analysis of
66
experimental data, from the following paper:
77

8-
> Vincent A. Cicirello. 2022. On Fitness Landscape Analysis of Permutation Problems: From Distance Metrics to Mutation Operator Selection. *CURRENTLY UNDER REVIEW*.
8+
> Vincent A. Cicirello. 2022. [On Fitness Landscape Analysis of Permutation Problems: From Distance Metrics to Mutation Operator Selection](https://www.cicirello.org/publications/Cicirello-MONE-2022.pdf). *Mobile Networks and Applications* (2022). doi:[10.1007/s11036-022-02060-z](https://doi.org/10.1007/s11036-022-02060-z)
99
10+
The above article is an extended version the following earlier conference paper:
1011

11-
| | |
12+
> Vincent A. Cicirello. 2019. [Classification of Permutation Distance Metrics for Fitness Landscape Analysis](https://www.cicirello.org/publications/cicirello-bict2019.pdf). In *Proceedings of the 11th International Conference on Bio-inspired Information and Communication Technologies*, pages 81-97. Springer Nature, March 2019. doi:[10.1007/978-3-030-24202-2_7](https://doi.org/10.1007/978-3-030-24202-2_7)
13+
14+
| __Related Publications__ | [![DOI](doi.svg)](https://doi.org/10.1007/s11036-022-02060-z) [![DOI](bict-doi.svg)](https://doi.org/10.1007/978-3-030-24202-2_7) |
1215
| :--- | :--- |
1316
| __License__ | [![GitHub](https://img.shields.io/github/license/cicirello/MONE2022-experiments)](LICENSE) |
17+
| __Packages and Releases__ | [![Maven Central](https://img.shields.io/maven-central/v/org.cicirello/mone-article-experiments.svg?label=Maven%20Central)](https://search.maven.org/artifact/org.cicirello/mone-article-experiments) [![GitHub release (latest by date)](https://img.shields.io/github/v/release/cicirello/MONE2022-experiments?logo=GitHub)](https://github.com/cicirello/MONE2022-experiments/releases) |
1418

1519
## Requirements to Build and Run the Experiments
1620

bict-doi.svg

Lines changed: 1 addition & 0 deletions
Loading

doi.svg

Lines changed: 1 addition & 0 deletions
Loading

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>

0 commit comments

Comments
 (0)