![]() |
Google OR-Tools v9.12
a fast and portable software suite for combinatorial optimization
|
Classes | |
class | Builder |
Static Public Member Functions | |
static final com.google.protobuf.Descriptors.Descriptor | getDescriptor () |
static com.google.ortools.sat.SymmetryProto | parseFrom (java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.sat.SymmetryProto | parseFrom (java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.sat.SymmetryProto | parseFrom (com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.sat.SymmetryProto | parseFrom (com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.sat.SymmetryProto | parseFrom (byte[] data) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.sat.SymmetryProto | parseFrom (byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException |
static com.google.ortools.sat.SymmetryProto | parseFrom (java.io.InputStream input) throws java.io.IOException |
static com.google.ortools.sat.SymmetryProto | parseFrom (java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException |
static com.google.ortools.sat.SymmetryProto | parseDelimitedFrom (java.io.InputStream input) throws java.io.IOException |
static com.google.ortools.sat.SymmetryProto | parseDelimitedFrom (java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException |
static com.google.ortools.sat.SymmetryProto | parseFrom (com.google.protobuf.CodedInputStream input) throws java.io.IOException |
static com.google.ortools.sat.SymmetryProto | parseFrom (com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException |
static Builder | newBuilder () |
static Builder | newBuilder (com.google.ortools.sat.SymmetryProto prototype) |
static com.google.ortools.sat.SymmetryProto | getDefaultInstance () |
static com.google.protobuf.Parser< SymmetryProto > | parser () |
Static Public Attributes | |
static final int | PERMUTATIONS_FIELD_NUMBER = 1 |
static final int | ORBITOPES_FIELD_NUMBER = 2 |
Protected Member Functions | |
com.google.protobuf.GeneratedMessage.FieldAccessorTable | internalGetFieldAccessorTable () |
Builder | newBuilderForType (com.google.protobuf.GeneratedMessage.BuilderParent parent) |
EXPERIMENTAL. For now, this is meant to be used by the solver and not filled by clients. Hold symmetry information about the set of feasible solutions. If we permute the variable values of any feasible solution using one of the permutation described here, we should always get another feasible solution. We usually also enforce that the objective of the new solution is the same. The group of permutations encoded here is usually computed from the encoding of the model, so it is not meant to be a complete representation of the feasible solution symmetries, just a valid subgroup.
Protobuf type operations_research.sat.SymmetryProto
Definition at line 26 of file SymmetryProto.java.
boolean com.google.ortools.sat.SymmetryProto.equals | ( | final java.lang.Object | obj | ) |
Definition at line 277 of file SymmetryProto.java.
|
static |
Definition at line 1472 of file SymmetryProto.java.
com.google.ortools.sat.SymmetryProto com.google.ortools.sat.SymmetryProto.getDefaultInstanceForType | ( | ) |
Definition at line 1508 of file SymmetryProto.java.
|
static |
Definition at line 50 of file SymmetryProto.java.
com.google.ortools.sat.DenseMatrixProto com.google.ortools.sat.SymmetryProto.getOrbitopes | ( | int | index | ) |
An orbitope is a special symmetry structure of the solution space. If the variable indices are arranged in a matrix (with no duplicates), then any permutation of the columns will be a valid permutation of the feasible space. This arise quite often. The typical example is a graph coloring problem where for each node i, you have j booleans to indicate its color. If the variables color_of_i_is_j are arranged in a matrix[i][j], then any columns permutations leave the problem invariant.
repeated .operations_research.sat.DenseMatrixProto orbitopes = 2;
Implements com.google.ortools.sat.SymmetryProtoOrBuilder.
Definition at line 210 of file SymmetryProto.java.
int com.google.ortools.sat.SymmetryProto.getOrbitopesCount | ( | ) |
An orbitope is a special symmetry structure of the solution space. If the variable indices are arranged in a matrix (with no duplicates), then any permutation of the columns will be a valid permutation of the feasible space. This arise quite often. The typical example is a graph coloring problem where for each node i, you have j booleans to indicate its color. If the variables color_of_i_is_j are arranged in a matrix[i][j], then any columns permutations leave the problem invariant.
repeated .operations_research.sat.DenseMatrixProto orbitopes = 2;
Implements com.google.ortools.sat.SymmetryProtoOrBuilder.
Definition at line 191 of file SymmetryProto.java.
java.util.List< com.google.ortools.sat.DenseMatrixProto > com.google.ortools.sat.SymmetryProto.getOrbitopesList | ( | ) |
An orbitope is a special symmetry structure of the solution space. If the variable indices are arranged in a matrix (with no duplicates), then any permutation of the columns will be a valid permutation of the feasible space. This arise quite often. The typical example is a graph coloring problem where for each node i, you have j booleans to indicate its color. If the variables color_of_i_is_j are arranged in a matrix[i][j], then any columns permutations leave the problem invariant.
repeated .operations_research.sat.DenseMatrixProto orbitopes = 2;
Implements com.google.ortools.sat.SymmetryProtoOrBuilder.
Definition at line 152 of file SymmetryProto.java.
com.google.ortools.sat.DenseMatrixProtoOrBuilder com.google.ortools.sat.SymmetryProto.getOrbitopesOrBuilder | ( | int | index | ) |
An orbitope is a special symmetry structure of the solution space. If the variable indices are arranged in a matrix (with no duplicates), then any permutation of the columns will be a valid permutation of the feasible space. This arise quite often. The typical example is a graph coloring problem where for each node i, you have j booleans to indicate its color. If the variables color_of_i_is_j are arranged in a matrix[i][j], then any columns permutations leave the problem invariant.
repeated .operations_research.sat.DenseMatrixProto orbitopes = 2;
Implements com.google.ortools.sat.SymmetryProtoOrBuilder.
Definition at line 229 of file SymmetryProto.java.
java.util.List<? extends com.google.ortools.sat.DenseMatrixProtoOrBuilder > com.google.ortools.sat.SymmetryProto.getOrbitopesOrBuilderList | ( | ) |
An orbitope is a special symmetry structure of the solution space. If the variable indices are arranged in a matrix (with no duplicates), then any permutation of the columns will be a valid permutation of the feasible space. This arise quite often. The typical example is a graph coloring problem where for each node i, you have j booleans to indicate its color. If the variables color_of_i_is_j are arranged in a matrix[i][j], then any columns permutations leave the problem invariant.
repeated .operations_research.sat.DenseMatrixProto orbitopes = 2;
Implements com.google.ortools.sat.SymmetryProtoOrBuilder.
Definition at line 172 of file SymmetryProto.java.
com.google.protobuf.Parser< SymmetryProto > com.google.ortools.sat.SymmetryProto.getParserForType | ( | ) |
Definition at line 1503 of file SymmetryProto.java.
com.google.ortools.sat.SparsePermutationProto com.google.ortools.sat.SymmetryProto.getPermutations | ( | int | index | ) |
A list of variable indices permutations that leave the feasible space of solution invariant. Usually, we only encode a set of generators of the group.
repeated .operations_research.sat.SparsePermutationProto permutations = 1;
Implements com.google.ortools.sat.SymmetryProtoOrBuilder.
Definition at line 115 of file SymmetryProto.java.
int com.google.ortools.sat.SymmetryProto.getPermutationsCount | ( | ) |
A list of variable indices permutations that leave the feasible space of solution invariant. Usually, we only encode a set of generators of the group.
repeated .operations_research.sat.SparsePermutationProto permutations = 1;
Implements com.google.ortools.sat.SymmetryProtoOrBuilder.
Definition at line 102 of file SymmetryProto.java.
java.util.List< com.google.ortools.sat.SparsePermutationProto > com.google.ortools.sat.SymmetryProto.getPermutationsList | ( | ) |
A list of variable indices permutations that leave the feasible space of solution invariant. Usually, we only encode a set of generators of the group.
repeated .operations_research.sat.SparsePermutationProto permutations = 1;
Implements com.google.ortools.sat.SymmetryProtoOrBuilder.
Definition at line 75 of file SymmetryProto.java.
com.google.ortools.sat.SparsePermutationProtoOrBuilder com.google.ortools.sat.SymmetryProto.getPermutationsOrBuilder | ( | int | index | ) |
A list of variable indices permutations that leave the feasible space of solution invariant. Usually, we only encode a set of generators of the group.
repeated .operations_research.sat.SparsePermutationProto permutations = 1;
Implements com.google.ortools.sat.SymmetryProtoOrBuilder.
Definition at line 128 of file SymmetryProto.java.
java.util.List<? extends com.google.ortools.sat.SparsePermutationProtoOrBuilder > com.google.ortools.sat.SymmetryProto.getPermutationsOrBuilderList | ( | ) |
A list of variable indices permutations that leave the feasible space of solution invariant. Usually, we only encode a set of generators of the group.
repeated .operations_research.sat.SparsePermutationProto permutations = 1;
Implements com.google.ortools.sat.SymmetryProtoOrBuilder.
Definition at line 89 of file SymmetryProto.java.
int com.google.ortools.sat.SymmetryProto.getSerializedSize | ( | ) |
Definition at line 258 of file SymmetryProto.java.
int com.google.ortools.sat.SymmetryProto.hashCode | ( | ) |
Definition at line 295 of file SymmetryProto.java.
|
protected |
Definition at line 56 of file SymmetryProto.java.
final boolean com.google.ortools.sat.SymmetryProto.isInitialized | ( | ) |
Definition at line 236 of file SymmetryProto.java.
|
static |
Definition at line 388 of file SymmetryProto.java.
|
static |
Definition at line 391 of file SymmetryProto.java.
Builder com.google.ortools.sat.SymmetryProto.newBuilderForType | ( | ) |
Definition at line 387 of file SymmetryProto.java.
|
protected |
Definition at line 401 of file SymmetryProto.java.
|
static |
Definition at line 359 of file SymmetryProto.java.
|
static |
Definition at line 365 of file SymmetryProto.java.
|
static |
Definition at line 336 of file SymmetryProto.java.
|
static |
Definition at line 340 of file SymmetryProto.java.
|
static |
Definition at line 325 of file SymmetryProto.java.
|
static |
Definition at line 330 of file SymmetryProto.java.
|
static |
Definition at line 372 of file SymmetryProto.java.
|
static |
Definition at line 378 of file SymmetryProto.java.
|
static |
Definition at line 346 of file SymmetryProto.java.
|
static |
Definition at line 351 of file SymmetryProto.java.
|
static |
Definition at line 314 of file SymmetryProto.java.
|
static |
Definition at line 319 of file SymmetryProto.java.
|
static |
Definition at line 1498 of file SymmetryProto.java.
Builder com.google.ortools.sat.SymmetryProto.toBuilder | ( | ) |
Definition at line 395 of file SymmetryProto.java.
void com.google.ortools.sat.SymmetryProto.writeTo | ( | com.google.protobuf.CodedOutputStream | output | ) | throws java.io.IOException |
Definition at line 246 of file SymmetryProto.java.
|
static |
Definition at line 133 of file SymmetryProto.java.
|
static |
Definition at line 62 of file SymmetryProto.java.