Skip to content

Commit 2bcf00e

Browse files
committed
adding elitism to steady state
modification to replacement strategies
1 parent fae661d commit 2bcf00e

File tree

119 files changed

+50177
-996
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+50177
-996
lines changed

.classpath

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path=""/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="lib" path="/Users/anthony/git/eX/lib/colt-1.2.0.jar"/>
6+
<classpathentry kind="lib" path="/Users/anthony/git/eX/lib/objenesis-1.0.jar"/>
7+
<classpathentry kind="output" path=""/>
8+
</classpath>

.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>eX</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

ec/algorithms/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/Algorithms.class
2+
/Optimization.class

ec/algorithms/aco/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/Agent.class
2+
/AntColonyOptimisation.class
3+
/ParameterTesting$TestRecord.class
4+
/ParameterTesting.class
5+
/RunAnt.class

ec/algorithms/aco/core/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/Record.class
2+
/WalkedPath.class
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/Reader.class
2+
/Writer.class

ec/algorithms/alps/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/ALPSReplacement.class
2+
/AgingScheme.class
3+
/LayerInterface.class
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/Exponential.class
2+
/Fibonacci.class
3+
/Linear.class
4+
/Polynomial.class
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/InitializeParams.class
2+
/Layer.class
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/ALPSReplacementStrategy.class
2+
/Default.class

0 commit comments

Comments
 (0)