![]() |
Google OR-Tools v9.15
a fast and portable software suite for combinatorial optimization
|
What stratification algorithm we use in the presence of weight.
Protobuf enum operations_research.sat.SatParameters.MaxSatStratificationAlgorithm
Definition at line 1163 of file SatParameters.java.
Public Member Functions | |
| final int | getNumber () |
| final com.google.protobuf.Descriptors.EnumValueDescriptor | getValueDescriptor () |
| final com.google.protobuf.Descriptors.EnumDescriptor | getDescriptorForType () |
Static Public Member Functions | |
| [static initializer] | |
| static MaxSatStratificationAlgorithm | valueOf (int value) |
| static MaxSatStratificationAlgorithm | forNumber (int value) |
| static com.google.protobuf.Internal.EnumLiteMap< MaxSatStratificationAlgorithm > | internalGetValueMap () |
| static com.google.protobuf.Descriptors.EnumDescriptor | getDescriptor () |
| static MaxSatStratificationAlgorithm | valueOf (com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
Public Attributes | |
| STRATIFICATION_NONE =(0) | |
| STRATIFICATION_DESCENT =(1) | |
| STRATIFICATION_ASCENT =(2) | |
Static Public Attributes | |
| static final int | STRATIFICATION_NONE_VALUE = 0 |
| static final int | STRATIFICATION_DESCENT_VALUE = 1 |
| static final int | STRATIFICATION_ASCENT_VALUE = 2 |
|
static |
|
static |
| value | The numeric wire value of the corresponding enum entry. |
Definition at line 1252 of file SatParameters.java.
|
static |
Definition at line 1282 of file SatParameters.java.
| final com.google.protobuf.Descriptors.EnumDescriptor com.google.ortools.sat.SatParameters.MaxSatStratificationAlgorithm.getDescriptorForType | ( | ) |
Definition at line 1278 of file SatParameters.java.
| final int com.google.ortools.sat.SatParameters.MaxSatStratificationAlgorithm.getNumber | ( | ) |
Definition at line 1234 of file SatParameters.java.
| final com.google.protobuf.Descriptors.EnumValueDescriptor com.google.ortools.sat.SatParameters.MaxSatStratificationAlgorithm.getValueDescriptor | ( | ) |
Definition at line 1274 of file SatParameters.java.
|
static |
Definition at line 1262 of file SatParameters.java.
|
static |
Definition at line 1288 of file SatParameters.java.
|
static |
| value | The numeric wire value of the corresponding enum entry. |
forNumber(int) instead. Definition at line 1244 of file SatParameters.java.
| com.google.ortools.sat.SatParameters.MaxSatStratificationAlgorithm.STRATIFICATION_ASCENT =(2) |
Start with all literals. Each time a core is found with a given minimum weight, do not consider literals with a lower weight for the next core computation. If the subproblem is SAT, do like in STRATIFICATION_DESCENT and just add the literals with the next highest weight.
STRATIFICATION_ASCENT = 2;
Definition at line 1192 of file SatParameters.java.
|
static |
Start with all literals. Each time a core is found with a given minimum weight, do not consider literals with a lower weight for the next core computation. If the subproblem is SAT, do like in STRATIFICATION_DESCENT and just add the literals with the next highest weight.
STRATIFICATION_ASCENT = 2;
Definition at line 1231 of file SatParameters.java.
| com.google.ortools.sat.SatParameters.MaxSatStratificationAlgorithm.STRATIFICATION_DESCENT =(1) |
Start with literals with the highest weight, and when SAT, add the literals with the next highest weight and so on.
STRATIFICATION_DESCENT = 1;
Definition at line 1181 of file SatParameters.java.
|
static |
Start with literals with the highest weight, and when SAT, add the literals with the next highest weight and so on.
STRATIFICATION_DESCENT = 1;
Definition at line 1220 of file SatParameters.java.
| com.google.ortools.sat.SatParameters.MaxSatStratificationAlgorithm.STRATIFICATION_NONE =(0) |
No stratification of the problem.
STRATIFICATION_NONE = 0;
Definition at line 1172 of file SatParameters.java.
|
static |
No stratification of the problem.
STRATIFICATION_NONE = 0;
Definition at line 1211 of file SatParameters.java.