Skip to content

Commit

Permalink
fixed files form Math #67
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent 50db00b commit 1585eb6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ public MultiStartUnivariateRealOptimizer(final UnivariateRealOptimizer optimizer

/** {@inheritDoc} */
public double getFunctionValue() {
return optimizer.getFunctionValue();
return optimaValues[0];
}

/** {@inheritDoc} */
public double getResult() {
return optimizer.getResult();
return optima[0];
}

/** {@inheritDoc} */
Expand Down

0 comments on commit 1585eb6

Please sign in to comment.