Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
Public Member Functions | |
boolean | hasStepSizeReductionExponent () |
double | getStepSizeReductionExponent () |
boolean | hasStepSizeGrowthExponent () |
double | getStepSizeGrowthExponent () |
Definition at line 7 of file AdaptiveLinesearchParamsOrBuilder.java.
double com.google.ortools.pdlp.AdaptiveLinesearchParamsOrBuilder.getStepSizeGrowthExponent | ( | ) |
The step size growth exponent defines a step size given by (1 + (total_steps_attempted + 1)^(-step_size_growth_exponent)) * step_size_. This should be between 0.1 and 1.
optional double step_size_growth_exponent = 2 [default = 0.6];
Implemented in com.google.ortools.pdlp.AdaptiveLinesearchParams.Builder, and com.google.ortools.pdlp.AdaptiveLinesearchParams.
double com.google.ortools.pdlp.AdaptiveLinesearchParamsOrBuilder.getStepSizeReductionExponent | ( | ) |
The step size reduction exponent defines a step size given by (1 - (total_steps_attempted + 1)^(-step_size_reduction_exponent)) * step_size_limit where step_size_limit is the maximum allowed step size at the current iteration. This should be between 0.1 and 1.
optional double step_size_reduction_exponent = 1 [default = 0.3];
Implemented in com.google.ortools.pdlp.AdaptiveLinesearchParams.Builder, and com.google.ortools.pdlp.AdaptiveLinesearchParams.
boolean com.google.ortools.pdlp.AdaptiveLinesearchParamsOrBuilder.hasStepSizeGrowthExponent | ( | ) |
The step size growth exponent defines a step size given by (1 + (total_steps_attempted + 1)^(-step_size_growth_exponent)) * step_size_. This should be between 0.1 and 1.
optional double step_size_growth_exponent = 2 [default = 0.6];
Implemented in com.google.ortools.pdlp.AdaptiveLinesearchParams.Builder, and com.google.ortools.pdlp.AdaptiveLinesearchParams.
boolean com.google.ortools.pdlp.AdaptiveLinesearchParamsOrBuilder.hasStepSizeReductionExponent | ( | ) |
The step size reduction exponent defines a step size given by (1 - (total_steps_attempted + 1)^(-step_size_reduction_exponent)) * step_size_limit where step_size_limit is the maximum allowed step size at the current iteration. This should be between 0.1 and 1.
optional double step_size_reduction_exponent = 1 [default = 0.3];
Implemented in com.google.ortools.pdlp.AdaptiveLinesearchParams.Builder, and com.google.ortools.pdlp.AdaptiveLinesearchParams.