Skip to content

Commit

Permalink
fixed files form Math #70
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent c84171a commit 5ea410f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public double solve(double min, double max)
/** {@inheritDoc} */
public double solve(final UnivariateRealFunction f, double min, double max, double initial)
throws MaxIterationsExceededException, FunctionEvaluationException {
return solve(min, max);
return solve(f, min, max);
}

/** {@inheritDoc} */
Expand Down

0 comments on commit 5ea410f

Please sign in to comment.