Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit bde7809

Browse files
committed
Bump version to 1.1
1 parent 10a7abc commit bde7809

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,13 @@ Add the following dependency to your `pom.xml`:
2424
<dependency>
2525
<groupId>org.moeaframework</groupId>
2626
<artifactId>gd</artifactId>
27-
<version>1.0</version>
27+
<version>1.1</version>
2828
</dependency>
2929
```
3030

3131
## Usage
3232

33-
Reference the `GD-MOEA/D` algorithm and supply a `"targets"` property pointing to a file containing the target
34-
points (objective values only). If no `"targets"` is provided, it defaults to targeting uniformly-spaced points generated
35-
by the Normal Boundary Intersection method.
33+
Reference the `GD-MOEA/D` algorithm as you would any other:
3634

3735
```java
3836

@@ -44,6 +42,9 @@ NondominatedPopulation result = new Executor()
4442
.run();
4543
```
4644

45+
There is an optional `targets` property. When set, it will use the target points defined in a file.
46+
If unset, it will default to uniformly-spaced points generated using the Normal Boundary Intersection method.
47+
4748
## License
4849

4950
Copyright 2009-2022 David Hadka and other contributors. All rights reserved.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.moeaframework</groupId>
44
<artifactId>gd</artifactId>
5-
<version>1.0</version>
5+
<version>1.1</version>
66
<packaging>jar</packaging>
77

88
<name>Generalized Decomposition</name>

0 commit comments

Comments
 (0)