com.farao_community.farao.dichotomy.api.index.IndexStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of farao-dichotomy-api Show documentation
Show all versions of farao-dichotomy-api Show documentation
API that enables launching dichotomy on an IIDM network
The newest version!
/*
* Copyright (c) 2020, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package com.farao_community.farao.dichotomy.api.index;
/**
* Interface responsible of defining which index value should be tested next by the dichotomy engine
* based on current Index state (which contains previously tested values information.
*
* @see RangeDivisionIndexStrategy
* @see StepsIndexStrategy
* @author Sebastien Murgey {@literal }
*/
public interface IndexStrategy {
double EPSILON = 1e-3;
double nextValue(Index> index);
default boolean precisionReached(Index> index) {
if (index.lowestInvalidStep() != null && Math.abs(index.lowestInvalidStep().getLeft() - index.minValue()) < EPSILON) {
return true;
}
if (index.highestValidStep() != null && Math.abs(index.highestValidStep().getLeft() - index.maxValue()) < EPSILON) {
return true;
}
if (index.lowestInvalidStep() == null || index.highestValidStep() == null) {
return false;
}
return Math.abs(index.highestValidStep().getLeft() - index.lowestInvalidStep().getLeft()) <= index.precision();
}
}