Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
Classes | |
class | Builder |
Public Member Functions | |
boolean | hasVarIndex () |
int | getVarIndex () |
boolean | hasVarValue () |
int | getVarValue () |
boolean | hasConstraint () |
com.google.ortools.linearsolver.MPConstraintProto | getConstraint () |
com.google.ortools.linearsolver.MPConstraintProtoOrBuilder | getConstraintOrBuilder () |
final boolean | isInitialized () |
void | writeTo (com.google.protobuf.CodedOutputStream output) throws java.io.IOException |
int | getSerializedSize () |
boolean | equals (final java.lang.Object obj) |
int | hashCode () |
Builder | newBuilderForType () |
Builder | toBuilder () |
com.google.protobuf.Parser< MPIndicatorConstraint > | getParserForType () |
com.google.ortools.linearsolver.MPIndicatorConstraint | getDefaultInstanceForType () |
Public Member Functions inherited from com.google.ortools.linearsolver.MPIndicatorConstraintOrBuilder |
Static Public Member Functions | |
static final com.google.protobuf.Descriptors.Descriptor | getDescriptor () |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseFrom (java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseFrom (java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseFrom (com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseFrom (com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseFrom (byte[] data) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseFrom (byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseFrom (java.io.InputStream input) throws java.io.IOException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseFrom (java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseDelimitedFrom (java.io.InputStream input) throws java.io.IOException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseDelimitedFrom (java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseFrom (com.google.protobuf.CodedInputStream input) throws java.io.IOException |
static com.google.ortools.linearsolver.MPIndicatorConstraint | parseFrom (com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException |
static Builder | newBuilder () |
static Builder | newBuilder (com.google.ortools.linearsolver.MPIndicatorConstraint prototype) |
static com.google.ortools.linearsolver.MPIndicatorConstraint | getDefaultInstance () |
static com.google.protobuf.Parser< MPIndicatorConstraint > | parser () |
Static Public Attributes | |
static final int | VAR_INDEX_FIELD_NUMBER = 1 |
static final int | VAR_VALUE_FIELD_NUMBER = 2 |
static final int | CONSTRAINT_FIELD_NUMBER = 3 |
Protected Member Functions | |
com.google.protobuf.GeneratedMessage.FieldAccessorTable | internalGetFieldAccessorTable () |
Builder | newBuilderForType (com.google.protobuf.GeneratedMessage.BuilderParent parent) |
Indicator constraints encode the activation or deactivation of linear constraints given the value of one Boolean variable in the model. For example: y = 0 => 2 * x1 + 3 * x2 >= 42 The 2 * x1 + 3 * x2 >= 42 constraint is only active if the variable y is equal to 0. As of 2019/04, only SCIP, CP-SAT and Gurobi support this constraint type.
Protobuf type operations_research.MPIndicatorConstraint
Definition at line 20 of file MPIndicatorConstraint.java.
boolean com.google.ortools.linearsolver.MPIndicatorConstraint.equals | ( | final java.lang.Object | obj | ) |
Definition at line 199 of file MPIndicatorConstraint.java.
com.google.ortools.linearsolver.MPConstraintProto com.google.ortools.linearsolver.MPIndicatorConstraint.getConstraint | ( | ) |
The constraint activated by the indicator variable.
optional .operations_research.MPConstraintProto constraint = 3;
Implements com.google.ortools.linearsolver.MPIndicatorConstraintOrBuilder.
Definition at line 134 of file MPIndicatorConstraint.java.
com.google.ortools.linearsolver.MPConstraintProtoOrBuilder com.google.ortools.linearsolver.MPIndicatorConstraint.getConstraintOrBuilder | ( | ) |
The constraint activated by the indicator variable.
optional .operations_research.MPConstraintProto constraint = 3;
Implements com.google.ortools.linearsolver.MPIndicatorConstraintOrBuilder.
Definition at line 145 of file MPIndicatorConstraint.java.
|
static |
Definition at line 814 of file MPIndicatorConstraint.java.
com.google.ortools.linearsolver.MPIndicatorConstraint com.google.ortools.linearsolver.MPIndicatorConstraint.getDefaultInstanceForType | ( | ) |
Definition at line 850 of file MPIndicatorConstraint.java.
|
static |
Definition at line 42 of file MPIndicatorConstraint.java.
com.google.protobuf.Parser< MPIndicatorConstraint > com.google.ortools.linearsolver.MPIndicatorConstraint.getParserForType | ( | ) |
Definition at line 845 of file MPIndicatorConstraint.java.
int com.google.ortools.linearsolver.MPIndicatorConstraint.getSerializedSize | ( | ) |
Definition at line 176 of file MPIndicatorConstraint.java.
int com.google.ortools.linearsolver.MPIndicatorConstraint.getVarIndex | ( | ) |
Variable index (w.r.t. the "variable" field of MPModelProto) of the Boolean variable used as indicator.
optional int32 var_index = 1;
Implements com.google.ortools.linearsolver.MPIndicatorConstraintOrBuilder.
Definition at line 80 of file MPIndicatorConstraint.java.
int com.google.ortools.linearsolver.MPIndicatorConstraint.getVarValue | ( | ) |
Value the above variable should take. Must be 0 or 1.
optional int32 var_value = 2;
Implements com.google.ortools.linearsolver.MPIndicatorConstraintOrBuilder.
Definition at line 107 of file MPIndicatorConstraint.java.
boolean com.google.ortools.linearsolver.MPIndicatorConstraint.hasConstraint | ( | ) |
The constraint activated by the indicator variable.
optional .operations_research.MPConstraintProto constraint = 3;
Implements com.google.ortools.linearsolver.MPIndicatorConstraintOrBuilder.
Definition at line 122 of file MPIndicatorConstraint.java.
int com.google.ortools.linearsolver.MPIndicatorConstraint.hashCode | ( | ) |
Definition at line 228 of file MPIndicatorConstraint.java.
boolean com.google.ortools.linearsolver.MPIndicatorConstraint.hasVarIndex | ( | ) |
Variable index (w.r.t. the "variable" field of MPModelProto) of the Boolean variable used as indicator.
optional int32 var_index = 1;
Implements com.google.ortools.linearsolver.MPIndicatorConstraintOrBuilder.
Definition at line 67 of file MPIndicatorConstraint.java.
boolean com.google.ortools.linearsolver.MPIndicatorConstraint.hasVarValue | ( | ) |
Value the above variable should take. Must be 0 or 1.
optional int32 var_value = 2;
Implements com.google.ortools.linearsolver.MPIndicatorConstraintOrBuilder.
Definition at line 95 of file MPIndicatorConstraint.java.
|
protected |
Definition at line 48 of file MPIndicatorConstraint.java.
final boolean com.google.ortools.linearsolver.MPIndicatorConstraint.isInitialized | ( | ) |
Definition at line 151 of file MPIndicatorConstraint.java.
|
static |
Definition at line 325 of file MPIndicatorConstraint.java.
|
static |
Definition at line 328 of file MPIndicatorConstraint.java.
Builder com.google.ortools.linearsolver.MPIndicatorConstraint.newBuilderForType | ( | ) |
Definition at line 324 of file MPIndicatorConstraint.java.
|
protected |
Definition at line 338 of file MPIndicatorConstraint.java.
|
static |
Definition at line 296 of file MPIndicatorConstraint.java.
|
static |
Definition at line 302 of file MPIndicatorConstraint.java.
|
static |
Definition at line 273 of file MPIndicatorConstraint.java.
|
static |
Definition at line 277 of file MPIndicatorConstraint.java.
|
static |
Definition at line 262 of file MPIndicatorConstraint.java.
|
static |
Definition at line 267 of file MPIndicatorConstraint.java.
|
static |
Definition at line 309 of file MPIndicatorConstraint.java.
|
static |
Definition at line 315 of file MPIndicatorConstraint.java.
|
static |
Definition at line 283 of file MPIndicatorConstraint.java.
|
static |
Definition at line 288 of file MPIndicatorConstraint.java.
|
static |
Definition at line 251 of file MPIndicatorConstraint.java.
|
static |
Definition at line 256 of file MPIndicatorConstraint.java.
|
static |
Definition at line 840 of file MPIndicatorConstraint.java.
Builder com.google.ortools.linearsolver.MPIndicatorConstraint.toBuilder | ( | ) |
Definition at line 332 of file MPIndicatorConstraint.java.
void com.google.ortools.linearsolver.MPIndicatorConstraint.writeTo | ( | com.google.protobuf.CodedOutputStream | output | ) | throws java.io.IOException |
Definition at line 161 of file MPIndicatorConstraint.java.
|
static |
Definition at line 111 of file MPIndicatorConstraint.java.
|
static |
Definition at line 55 of file MPIndicatorConstraint.java.
|
static |
Definition at line 84 of file MPIndicatorConstraint.java.