Google OR-Tools v9.12
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
com.google.ortools.sat.v1.CpSolverRequest Class Reference
Inheritance diagram for com.google.ortools.sat.v1.CpSolverRequest:
com.google.ortools.sat.v1.CpSolverRequestOrBuilder

Classes

class  Builder
 

Public Member Functions

boolean hasModel ()
 
com.google.ortools.sat.CpModelProto getModel ()
 
com.google.ortools.sat.CpModelProtoOrBuilder getModelOrBuilder ()
 
boolean hasParameters ()
 
com.google.ortools.sat.SatParameters getParameters ()
 
com.google.ortools.sat.SatParametersOrBuilder getParametersOrBuilder ()
 
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< CpSolverRequestgetParserForType ()
 
com.google.ortools.sat.v1.CpSolverRequest getDefaultInstanceForType ()
 

Static Public Member Functions

static final com.google.protobuf.Descriptors.Descriptor getDescriptor ()
 
static com.google.ortools.sat.v1.CpSolverRequest parseFrom (java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
 
static com.google.ortools.sat.v1.CpSolverRequest parseFrom (java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
 
static com.google.ortools.sat.v1.CpSolverRequest parseFrom (com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
 
static com.google.ortools.sat.v1.CpSolverRequest parseFrom (com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
 
static com.google.ortools.sat.v1.CpSolverRequest parseFrom (byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
 
static com.google.ortools.sat.v1.CpSolverRequest parseFrom (byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
 
static com.google.ortools.sat.v1.CpSolverRequest parseFrom (java.io.InputStream input) throws java.io.IOException
 
static com.google.ortools.sat.v1.CpSolverRequest parseFrom (java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException
 
static com.google.ortools.sat.v1.CpSolverRequest parseDelimitedFrom (java.io.InputStream input) throws java.io.IOException
 
static com.google.ortools.sat.v1.CpSolverRequest parseDelimitedFrom (java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException
 
static com.google.ortools.sat.v1.CpSolverRequest parseFrom (com.google.protobuf.CodedInputStream input) throws java.io.IOException
 
static com.google.ortools.sat.v1.CpSolverRequest 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.v1.CpSolverRequest prototype)
 
static com.google.ortools.sat.v1.CpSolverRequest getDefaultInstance ()
 
static com.google.protobuf.Parser< CpSolverRequestparser ()
 

Static Public Attributes

static final int MODEL_FIELD_NUMBER = 1
 
static final int PARAMETERS_FIELD_NUMBER = 3
 

Protected Member Functions

com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable ()
 
Builder newBuilderForType (com.google.protobuf.GeneratedMessage.BuilderParent parent)
 

Detailed Description

The request sent to the remote solve service.

Protobuf type operations_research.sat.v1.CpSolverRequest

Definition at line 15 of file CpSolverRequest.java.

Member Function Documentation

◆ equals()

boolean com.google.ortools.sat.v1.CpSolverRequest.equals ( final java.lang.Object obj)

Definition at line 169 of file CpSolverRequest.java.

◆ getDefaultInstance()

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.getDefaultInstance ( )
static

Definition at line 806 of file CpSolverRequest.java.

◆ getDefaultInstanceForType()

com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.getDefaultInstanceForType ( )

Definition at line 842 of file CpSolverRequest.java.

◆ getDescriptor()

static final com.google.protobuf.Descriptors.Descriptor com.google.ortools.sat.v1.CpSolverRequest.getDescriptor ( )
static

Definition at line 37 of file CpSolverRequest.java.

◆ getModel()

com.google.ortools.sat.CpModelProto com.google.ortools.sat.v1.CpSolverRequest.getModel ( )
The model to solve.

.operations_research.sat.CpModelProto model = 1;

Returns
The model.

Implements com.google.ortools.sat.v1.CpSolverRequestOrBuilder.

Definition at line 73 of file CpSolverRequest.java.

◆ getModelOrBuilder()

com.google.ortools.sat.CpModelProtoOrBuilder com.google.ortools.sat.v1.CpSolverRequest.getModelOrBuilder ( )
The model to solve.

.operations_research.sat.CpModelProto model = 1;

Implements com.google.ortools.sat.v1.CpSolverRequestOrBuilder.

Definition at line 84 of file CpSolverRequest.java.

◆ getParameters()

com.google.ortools.sat.SatParameters com.google.ortools.sat.v1.CpSolverRequest.getParameters ( )
Solver parameters.

.operations_research.sat.SatParameters parameters = 3;

Returns
The parameters.

Implements com.google.ortools.sat.v1.CpSolverRequestOrBuilder.

Definition at line 111 of file CpSolverRequest.java.

◆ getParametersOrBuilder()

com.google.ortools.sat.SatParametersOrBuilder com.google.ortools.sat.v1.CpSolverRequest.getParametersOrBuilder ( )
Solver parameters.

.operations_research.sat.SatParameters parameters = 3;

Implements com.google.ortools.sat.v1.CpSolverRequestOrBuilder.

Definition at line 122 of file CpSolverRequest.java.

◆ getParserForType()

com.google.protobuf.Parser< CpSolverRequest > com.google.ortools.sat.v1.CpSolverRequest.getParserForType ( )

Definition at line 837 of file CpSolverRequest.java.

◆ getSerializedSize()

int com.google.ortools.sat.v1.CpSolverRequest.getSerializedSize ( )

Definition at line 150 of file CpSolverRequest.java.

◆ hashCode()

int com.google.ortools.sat.v1.CpSolverRequest.hashCode ( )

Definition at line 193 of file CpSolverRequest.java.

◆ hasModel()

boolean com.google.ortools.sat.v1.CpSolverRequest.hasModel ( )
The model to solve.

.operations_research.sat.CpModelProto model = 1;

Returns
Whether the model field is set.

Implements com.google.ortools.sat.v1.CpSolverRequestOrBuilder.

Definition at line 61 of file CpSolverRequest.java.

◆ hasParameters()

boolean com.google.ortools.sat.v1.CpSolverRequest.hasParameters ( )
Solver parameters.

.operations_research.sat.SatParameters parameters = 3;

Returns
Whether the parameters field is set.

Implements com.google.ortools.sat.v1.CpSolverRequestOrBuilder.

Definition at line 99 of file CpSolverRequest.java.

◆ internalGetFieldAccessorTable()

com.google.protobuf.GeneratedMessage.FieldAccessorTable com.google.ortools.sat.v1.CpSolverRequest.internalGetFieldAccessorTable ( )
protected

Definition at line 43 of file CpSolverRequest.java.

◆ isInitialized()

final boolean com.google.ortools.sat.v1.CpSolverRequest.isInitialized ( )

Definition at line 128 of file CpSolverRequest.java.

◆ newBuilder() [1/2]

static Builder com.google.ortools.sat.v1.CpSolverRequest.newBuilder ( )
static

Definition at line 286 of file CpSolverRequest.java.

◆ newBuilder() [2/2]

static Builder com.google.ortools.sat.v1.CpSolverRequest.newBuilder ( com.google.ortools.sat.v1.CpSolverRequest prototype)
static

Definition at line 289 of file CpSolverRequest.java.

◆ newBuilderForType() [1/2]

Builder com.google.ortools.sat.v1.CpSolverRequest.newBuilderForType ( )

Definition at line 285 of file CpSolverRequest.java.

◆ newBuilderForType() [2/2]

Builder com.google.ortools.sat.v1.CpSolverRequest.newBuilderForType ( com.google.protobuf.GeneratedMessage.BuilderParent parent)
protected

Definition at line 299 of file CpSolverRequest.java.

◆ parseDelimitedFrom() [1/2]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseDelimitedFrom ( java.io.InputStream input) throws java.io.IOException
static

Definition at line 257 of file CpSolverRequest.java.

◆ parseDelimitedFrom() [2/2]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseDelimitedFrom ( java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry ) throws java.io.IOException
static

Definition at line 263 of file CpSolverRequest.java.

◆ parseFrom() [1/10]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseFrom ( byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
static

Definition at line 234 of file CpSolverRequest.java.

◆ parseFrom() [2/10]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseFrom ( byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry ) throws com.google.protobuf.InvalidProtocolBufferException
static

Definition at line 238 of file CpSolverRequest.java.

◆ parseFrom() [3/10]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseFrom ( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
static

Definition at line 223 of file CpSolverRequest.java.

◆ parseFrom() [4/10]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseFrom ( com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry ) throws com.google.protobuf.InvalidProtocolBufferException
static

Definition at line 228 of file CpSolverRequest.java.

◆ parseFrom() [5/10]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseFrom ( com.google.protobuf.CodedInputStream input) throws java.io.IOException
static

Definition at line 270 of file CpSolverRequest.java.

◆ parseFrom() [6/10]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseFrom ( com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry ) throws java.io.IOException
static

Definition at line 276 of file CpSolverRequest.java.

◆ parseFrom() [7/10]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseFrom ( java.io.InputStream input) throws java.io.IOException
static

Definition at line 244 of file CpSolverRequest.java.

◆ parseFrom() [8/10]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseFrom ( java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry ) throws java.io.IOException
static

Definition at line 249 of file CpSolverRequest.java.

◆ parseFrom() [9/10]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseFrom ( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
static

Definition at line 212 of file CpSolverRequest.java.

◆ parseFrom() [10/10]

static com.google.ortools.sat.v1.CpSolverRequest com.google.ortools.sat.v1.CpSolverRequest.parseFrom ( java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry ) throws com.google.protobuf.InvalidProtocolBufferException
static

Definition at line 217 of file CpSolverRequest.java.

◆ parser()

static com.google.protobuf.Parser< CpSolverRequest > com.google.ortools.sat.v1.CpSolverRequest.parser ( )
static

Definition at line 832 of file CpSolverRequest.java.

◆ toBuilder()

Builder com.google.ortools.sat.v1.CpSolverRequest.toBuilder ( )

Definition at line 293 of file CpSolverRequest.java.

◆ writeTo()

void com.google.ortools.sat.v1.CpSolverRequest.writeTo ( com.google.protobuf.CodedOutputStream output) throws java.io.IOException

Definition at line 138 of file CpSolverRequest.java.

Member Data Documentation

◆ MODEL_FIELD_NUMBER

final int com.google.ortools.sat.v1.CpSolverRequest.MODEL_FIELD_NUMBER = 1
static

Definition at line 50 of file CpSolverRequest.java.

◆ PARAMETERS_FIELD_NUMBER

final int com.google.ortools.sat.v1.CpSolverRequest.PARAMETERS_FIELD_NUMBER = 3
static

Definition at line 88 of file CpSolverRequest.java.


The documentation for this class was generated from the following file: