Skip to content

Commit

Permalink
minor modification
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasWeise committed Dec 26, 2019
1 parent cf31319 commit 47a321b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/aitoa/algorithms/EA1p1.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* the solution space
*/
// start relevant
public final class EA1p1<X, Y> implements IMetaheuristic<X, Y> {
public class EA1p1<X, Y> implements IMetaheuristic<X, Y> {
// end relevant
/** create */
public EA1p1() {
Expand Down Expand Up @@ -70,7 +70,7 @@ public final void solve(final IBlackBoxProcess<X, Y> process) {

/** {@inheritDoc} */
@Override
public final String toString() {
public String toString() {
return "(1+1)-EA"; //$NON-NLS-1$
}

Expand Down

0 comments on commit 47a321b

Please sign in to comment.