Uses of Interface
org.ojalgo.optimisation.integer.IntegerStrategy
-
Packages that use IntegerStrategy Package Description org.ojalgo.optimisation org.ojalgo.optimisation.integer -
-
Uses of IntegerStrategy in org.ojalgo.optimisation
Fields in org.ojalgo.optimisation declared as IntegerStrategy Modifier and Type Field Description private IntegerStrategy
Optimisation.Options. myIntegerStrategy
Methods in org.ojalgo.optimisation that return IntegerStrategy Modifier and Type Method Description IntegerStrategy
Optimisation.Options. integer()
Methods in org.ojalgo.optimisation with parameters of type IntegerStrategy Modifier and Type Method Description Optimisation.Options
Optimisation.Options. integer(IntegerStrategy strategy)
Set the strategy/configuration for theIntegerSolver
. -
Uses of IntegerStrategy in org.ojalgo.optimisation.integer
Classes in org.ojalgo.optimisation.integer that implement IntegerStrategy Modifier and Type Class Description static class
IntegerStrategy.ConfigurableStrategy
class
ModelStrategy
This base class contains some model/problem specific data required by theIntegerSolver
.static class
ModelStrategy.AbstractStrategy
When implementing your ownModelStrategy
extending this abstract class is a good starting point.(package private) static class
ModelStrategy.DefaultStrategy
Fields in org.ojalgo.optimisation.integer declared as IntegerStrategy Modifier and Type Field Description private IntegerStrategy
ModelStrategy. myStrategy
Fields in org.ojalgo.optimisation.integer with type parameters of type IntegerStrategy Modifier and Type Field Description private java.util.function.BiFunction<ExpressionsBasedModel,IntegerStrategy,ModelStrategy>
IntegerStrategy.ConfigurableStrategy. myFactory
Method parameters in org.ojalgo.optimisation.integer with type arguments of type IntegerStrategy Modifier and Type Method Description IntegerStrategy.ConfigurableStrategy
IntegerStrategy.ConfigurableStrategy. withModelStrategyFactory(java.util.function.BiFunction<ExpressionsBasedModel,IntegerStrategy,ModelStrategy> newFactory)
Constructors in org.ojalgo.optimisation.integer with parameters of type IntegerStrategy Constructor Description AbstractStrategy(ExpressionsBasedModel model, IntegerStrategy strategy)
DefaultStrategy(ExpressionsBasedModel model, IntegerStrategy strategy)
ModelStrategy(ExpressionsBasedModel model, IntegerStrategy strategy)
Constructor parameters in org.ojalgo.optimisation.integer with type arguments of type IntegerStrategy Constructor Description ConfigurableStrategy(java.util.function.IntSupplier parallelism, java.util.Comparator<NodeKey>[] definitions, NumberContext integrality, NumberContext gap, java.util.function.BiFunction<ExpressionsBasedModel,IntegerStrategy,ModelStrategy> factory, IntegerStrategy.GMICutConfiguration configuration)
-