Skip to content
Snippets Groups Projects
Commit 67c146f1 authored by Guylaine Prat's avatar Guylaine Prat
Browse files

Correction due to checkstyle check.

parent f5dbf452
No related branches found
No related tags found
No related merge requests found
...@@ -540,7 +540,7 @@ public class SensorMeanPlaneCrossing { ...@@ -540,7 +540,7 @@ public class SensorMeanPlaneCrossing {
} }
final UnivariateSolver solver = new BracketingNthOrderBrentSolver(accuracy, 5); final UnivariateSolver solver = new BracketingNthOrderBrentSolver(accuracy, 5);
double crossingLine = solver.solve(maxEval, new UnivariateFunction() { final double crossingLine = solver.solve(maxEval, new UnivariateFunction() {
/** {@inheritDoc} */ /** {@inheritDoc} */
@Override @Override
public double value(final double x) throws RuggedExceptionWrapper { public double value(final double x) throws RuggedExceptionWrapper {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment