Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
Bump version to 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Nov 23, 2022
1 parent 10a7abc commit bde7809
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,13 @@ Add the following dependency to your `pom.xml`:
<dependency>
<groupId>org.moeaframework</groupId>
<artifactId>gd</artifactId>
<version>1.0</version>
<version>1.1</version>
</dependency>
```

## Usage

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

```java

Expand All @@ -44,6 +42,9 @@ NondominatedPopulation result = new Executor()
.run();
```

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

## License

Copyright 2009-2022 David Hadka and other contributors. All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.moeaframework</groupId>
<artifactId>gd</artifactId>
<version>1.0</version>
<version>1.1</version>
<packaging>jar</packaging>

<name>Generalized Decomposition</name>
Expand Down

0 comments on commit bde7809

Please sign in to comment.