Skip to content

Commit f34803f

Browse files
committed
Deployed to maven
1 parent 2ea1671 commit f34803f

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed

README.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ This package provides java implementation of various genetic programming paradig
55

66
More details are provided in the [docs](http://java-genetic-programming.readthedocs.io/en/latest/?badge=latest) for implementation, complexities and further info.
77

8+
# Install
9+
10+
Add the following dependency to your POM file:
11+
12+
```xml
13+
<dependency>
14+
<groupId>com.github.chen0040</groupId>
15+
<artifactId>java-genetic-programming</artifactId>
16+
<version>1.0.4</version>
17+
</dependency>
18+
```
819

920
# Features
1021

@@ -74,17 +85,7 @@ Future Works
7485
* Grammar-based Genetic Programming
7586
* Gene Expression Programming
7687

77-
# Install
7888

79-
Add the following dependency to your POM file:
80-
81-
```xml
82-
<dependency>
83-
<groupId>com.github.chen0040</groupId>
84-
<artifactId>java-genetic-programming</artifactId>
85-
<version>1.0.3</version>
86-
</dependency>
87-
```
8889

8990
# Usage of Linear Genetic Programming
9091

@@ -149,8 +150,8 @@ The sample code below shows how the LGP can be created and trained:
149150

150151
```java
151152
import com.github.chen0040.gp.lgp.LGP;
152-
import com.github.chen0040.gp.lgp.gp.BasicObservation;
153-
import com.github.chen0040.gp.lgp.gp.Observation;
153+
import com.github.chen0040.gp.commons.BasicObservation;
154+
import com.github.chen0040.gp.commons.Observation;
154155
import com.github.chen0040.gp.lgp.gp.Population;
155156
import com.github.chen0040.gp.lgp.program.operators.*;
156157

@@ -255,8 +256,8 @@ The sample code below shows how the TreeGP can be created and trained:
255256

256257
```java
257258
import com.github.chen0040.gp.treegp.TreeGP;
258-
import com.github.chen0040.gp.treegp.gp.BasicObservation;
259-
import com.github.chen0040.gp.treegp.gp.Observation;
259+
import com.github.chen0040.gp.commons.BasicObservation;
260+
import com.github.chen0040.gp.commons.Observation;
260261
import com.github.chen0040.gp.treegp.gp.Population;
261262
import com.github.chen0040.gp.treegp.program.operators.*;
262263

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.chen0040</groupId>
88
<artifactId>java-genetic-programming</artifactId>
9-
<version>1.0.4</version>
9+
<version>1.0.5</version>
1010

1111

1212
<licenses>

run-test.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./mvnw test cobertura:cobertura coveralls:report -B -Punit-test

0 commit comments

Comments
 (0)