com.google.ortools.constraintsolver.RoutingModelParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-or-tools Show documentation
Show all versions of google-or-tools Show documentation
A project to publish Google OR-Tools as a dependable dependency in Maven.
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: ortools/constraint_solver/routing_parameters.proto
package com.google.ortools.constraintsolver;
/**
*
* Parameters which have to be set when creating a RoutingModel.
*
*
* Protobuf type {@code operations_research.RoutingModelParameters}
*/
public final class RoutingModelParameters extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:operations_research.RoutingModelParameters)
RoutingModelParametersOrBuilder {
private static final long serialVersionUID = 0L;
// Use RoutingModelParameters.newBuilder() to construct.
private RoutingModelParameters(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RoutingModelParameters() {
reduceVehicleCostModel_ = false;
maxCallbackCacheSize_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RoutingModelParameters(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
com.google.ortools.constraintsolver.ConstraintSolverParameters.Builder subBuilder = null;
if (solverParameters_ != null) {
subBuilder = solverParameters_.toBuilder();
}
solverParameters_ = input.readMessage(com.google.ortools.constraintsolver.ConstraintSolverParameters.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(solverParameters_);
solverParameters_ = subBuilder.buildPartial();
}
break;
}
case 16: {
reduceVehicleCostModel_ = input.readBool();
break;
}
case 24: {
maxCallbackCacheSize_ = input.readInt32();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.ortools.constraintsolver.RoutingParameters.internal_static_operations_research_RoutingModelParameters_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.ortools.constraintsolver.RoutingParameters.internal_static_operations_research_RoutingModelParameters_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.ortools.constraintsolver.RoutingModelParameters.class, com.google.ortools.constraintsolver.RoutingModelParameters.Builder.class);
}
public static final int SOLVER_PARAMETERS_FIELD_NUMBER = 1;
private com.google.ortools.constraintsolver.ConstraintSolverParameters solverParameters_;
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public boolean hasSolverParameters() {
return solverParameters_ != null;
}
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public com.google.ortools.constraintsolver.ConstraintSolverParameters getSolverParameters() {
return solverParameters_ == null ? com.google.ortools.constraintsolver.ConstraintSolverParameters.getDefaultInstance() : solverParameters_;
}
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public com.google.ortools.constraintsolver.ConstraintSolverParametersOrBuilder getSolverParametersOrBuilder() {
return getSolverParameters();
}
public static final int REDUCE_VEHICLE_COST_MODEL_FIELD_NUMBER = 2;
private boolean reduceVehicleCostModel_;
/**
*
* Advanced settings.
* If set to true reduction of the underlying constraint model will be
* attempted when all vehicles have exactly the same cost structure. This can
* result in significant speedups.
*
*
* bool reduce_vehicle_cost_model = 2;
*/
public boolean getReduceVehicleCostModel() {
return reduceVehicleCostModel_;
}
public static final int MAX_CALLBACK_CACHE_SIZE_FIELD_NUMBER = 3;
private int maxCallbackCacheSize_;
/**
*
* Cache callback calls if the number of nodes in the model is less or equal
* to this value.
*
*
* int32 max_callback_cache_size = 3;
*/
public int getMaxCallbackCacheSize() {
return maxCallbackCacheSize_;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (solverParameters_ != null) {
output.writeMessage(1, getSolverParameters());
}
if (reduceVehicleCostModel_ != false) {
output.writeBool(2, reduceVehicleCostModel_);
}
if (maxCallbackCacheSize_ != 0) {
output.writeInt32(3, maxCallbackCacheSize_);
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (solverParameters_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getSolverParameters());
}
if (reduceVehicleCostModel_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(2, reduceVehicleCostModel_);
}
if (maxCallbackCacheSize_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, maxCallbackCacheSize_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.ortools.constraintsolver.RoutingModelParameters)) {
return super.equals(obj);
}
com.google.ortools.constraintsolver.RoutingModelParameters other = (com.google.ortools.constraintsolver.RoutingModelParameters) obj;
boolean result = true;
result = result && (hasSolverParameters() == other.hasSolverParameters());
if (hasSolverParameters()) {
result = result && getSolverParameters()
.equals(other.getSolverParameters());
}
result = result && (getReduceVehicleCostModel()
== other.getReduceVehicleCostModel());
result = result && (getMaxCallbackCacheSize()
== other.getMaxCallbackCacheSize());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasSolverParameters()) {
hash = (37 * hash) + SOLVER_PARAMETERS_FIELD_NUMBER;
hash = (53 * hash) + getSolverParameters().hashCode();
}
hash = (37 * hash) + REDUCE_VEHICLE_COST_MODEL_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getReduceVehicleCostModel());
hash = (37 * hash) + MAX_CALLBACK_CACHE_SIZE_FIELD_NUMBER;
hash = (53 * hash) + getMaxCallbackCacheSize();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.ortools.constraintsolver.RoutingModelParameters parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.ortools.constraintsolver.RoutingModelParameters prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* Parameters which have to be set when creating a RoutingModel.
*
*
* Protobuf type {@code operations_research.RoutingModelParameters}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:operations_research.RoutingModelParameters)
com.google.ortools.constraintsolver.RoutingModelParametersOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.ortools.constraintsolver.RoutingParameters.internal_static_operations_research_RoutingModelParameters_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.ortools.constraintsolver.RoutingParameters.internal_static_operations_research_RoutingModelParameters_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.ortools.constraintsolver.RoutingModelParameters.class, com.google.ortools.constraintsolver.RoutingModelParameters.Builder.class);
}
// Construct using com.google.ortools.constraintsolver.RoutingModelParameters.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
public Builder clear() {
super.clear();
if (solverParametersBuilder_ == null) {
solverParameters_ = null;
} else {
solverParameters_ = null;
solverParametersBuilder_ = null;
}
reduceVehicleCostModel_ = false;
maxCallbackCacheSize_ = 0;
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.ortools.constraintsolver.RoutingParameters.internal_static_operations_research_RoutingModelParameters_descriptor;
}
public com.google.ortools.constraintsolver.RoutingModelParameters getDefaultInstanceForType() {
return com.google.ortools.constraintsolver.RoutingModelParameters.getDefaultInstance();
}
public com.google.ortools.constraintsolver.RoutingModelParameters build() {
com.google.ortools.constraintsolver.RoutingModelParameters result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.google.ortools.constraintsolver.RoutingModelParameters buildPartial() {
com.google.ortools.constraintsolver.RoutingModelParameters result = new com.google.ortools.constraintsolver.RoutingModelParameters(this);
if (solverParametersBuilder_ == null) {
result.solverParameters_ = solverParameters_;
} else {
result.solverParameters_ = solverParametersBuilder_.build();
}
result.reduceVehicleCostModel_ = reduceVehicleCostModel_;
result.maxCallbackCacheSize_ = maxCallbackCacheSize_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.ortools.constraintsolver.RoutingModelParameters) {
return mergeFrom((com.google.ortools.constraintsolver.RoutingModelParameters)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.ortools.constraintsolver.RoutingModelParameters other) {
if (other == com.google.ortools.constraintsolver.RoutingModelParameters.getDefaultInstance()) return this;
if (other.hasSolverParameters()) {
mergeSolverParameters(other.getSolverParameters());
}
if (other.getReduceVehicleCostModel() != false) {
setReduceVehicleCostModel(other.getReduceVehicleCostModel());
}
if (other.getMaxCallbackCacheSize() != 0) {
setMaxCallbackCacheSize(other.getMaxCallbackCacheSize());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.ortools.constraintsolver.RoutingModelParameters parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.ortools.constraintsolver.RoutingModelParameters) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private com.google.ortools.constraintsolver.ConstraintSolverParameters solverParameters_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.ortools.constraintsolver.ConstraintSolverParameters, com.google.ortools.constraintsolver.ConstraintSolverParameters.Builder, com.google.ortools.constraintsolver.ConstraintSolverParametersOrBuilder> solverParametersBuilder_;
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public boolean hasSolverParameters() {
return solverParametersBuilder_ != null || solverParameters_ != null;
}
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public com.google.ortools.constraintsolver.ConstraintSolverParameters getSolverParameters() {
if (solverParametersBuilder_ == null) {
return solverParameters_ == null ? com.google.ortools.constraintsolver.ConstraintSolverParameters.getDefaultInstance() : solverParameters_;
} else {
return solverParametersBuilder_.getMessage();
}
}
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public Builder setSolverParameters(com.google.ortools.constraintsolver.ConstraintSolverParameters value) {
if (solverParametersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
solverParameters_ = value;
onChanged();
} else {
solverParametersBuilder_.setMessage(value);
}
return this;
}
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public Builder setSolverParameters(
com.google.ortools.constraintsolver.ConstraintSolverParameters.Builder builderForValue) {
if (solverParametersBuilder_ == null) {
solverParameters_ = builderForValue.build();
onChanged();
} else {
solverParametersBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public Builder mergeSolverParameters(com.google.ortools.constraintsolver.ConstraintSolverParameters value) {
if (solverParametersBuilder_ == null) {
if (solverParameters_ != null) {
solverParameters_ =
com.google.ortools.constraintsolver.ConstraintSolverParameters.newBuilder(solverParameters_).mergeFrom(value).buildPartial();
} else {
solverParameters_ = value;
}
onChanged();
} else {
solverParametersBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public Builder clearSolverParameters() {
if (solverParametersBuilder_ == null) {
solverParameters_ = null;
onChanged();
} else {
solverParameters_ = null;
solverParametersBuilder_ = null;
}
return this;
}
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public com.google.ortools.constraintsolver.ConstraintSolverParameters.Builder getSolverParametersBuilder() {
onChanged();
return getSolverParametersFieldBuilder().getBuilder();
}
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
public com.google.ortools.constraintsolver.ConstraintSolverParametersOrBuilder getSolverParametersOrBuilder() {
if (solverParametersBuilder_ != null) {
return solverParametersBuilder_.getMessageOrBuilder();
} else {
return solverParameters_ == null ?
com.google.ortools.constraintsolver.ConstraintSolverParameters.getDefaultInstance() : solverParameters_;
}
}
/**
*
* Parameters to use in the underlying constraint solver.
*
*
* .operations_research.ConstraintSolverParameters solver_parameters = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.ortools.constraintsolver.ConstraintSolverParameters, com.google.ortools.constraintsolver.ConstraintSolverParameters.Builder, com.google.ortools.constraintsolver.ConstraintSolverParametersOrBuilder>
getSolverParametersFieldBuilder() {
if (solverParametersBuilder_ == null) {
solverParametersBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.ortools.constraintsolver.ConstraintSolverParameters, com.google.ortools.constraintsolver.ConstraintSolverParameters.Builder, com.google.ortools.constraintsolver.ConstraintSolverParametersOrBuilder>(
getSolverParameters(),
getParentForChildren(),
isClean());
solverParameters_ = null;
}
return solverParametersBuilder_;
}
private boolean reduceVehicleCostModel_ ;
/**
*
* Advanced settings.
* If set to true reduction of the underlying constraint model will be
* attempted when all vehicles have exactly the same cost structure. This can
* result in significant speedups.
*
*
* bool reduce_vehicle_cost_model = 2;
*/
public boolean getReduceVehicleCostModel() {
return reduceVehicleCostModel_;
}
/**
*
* Advanced settings.
* If set to true reduction of the underlying constraint model will be
* attempted when all vehicles have exactly the same cost structure. This can
* result in significant speedups.
*
*
* bool reduce_vehicle_cost_model = 2;
*/
public Builder setReduceVehicleCostModel(boolean value) {
reduceVehicleCostModel_ = value;
onChanged();
return this;
}
/**
*
* Advanced settings.
* If set to true reduction of the underlying constraint model will be
* attempted when all vehicles have exactly the same cost structure. This can
* result in significant speedups.
*
*
* bool reduce_vehicle_cost_model = 2;
*/
public Builder clearReduceVehicleCostModel() {
reduceVehicleCostModel_ = false;
onChanged();
return this;
}
private int maxCallbackCacheSize_ ;
/**
*
* Cache callback calls if the number of nodes in the model is less or equal
* to this value.
*
*
* int32 max_callback_cache_size = 3;
*/
public int getMaxCallbackCacheSize() {
return maxCallbackCacheSize_;
}
/**
*
* Cache callback calls if the number of nodes in the model is less or equal
* to this value.
*
*
* int32 max_callback_cache_size = 3;
*/
public Builder setMaxCallbackCacheSize(int value) {
maxCallbackCacheSize_ = value;
onChanged();
return this;
}
/**
*
* Cache callback calls if the number of nodes in the model is less or equal
* to this value.
*
*
* int32 max_callback_cache_size = 3;
*/
public Builder clearMaxCallbackCacheSize() {
maxCallbackCacheSize_ = 0;
onChanged();
return this;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:operations_research.RoutingModelParameters)
}
// @@protoc_insertion_point(class_scope:operations_research.RoutingModelParameters)
private static final com.google.ortools.constraintsolver.RoutingModelParameters DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.ortools.constraintsolver.RoutingModelParameters();
}
public static com.google.ortools.constraintsolver.RoutingModelParameters getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
public RoutingModelParameters parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RoutingModelParameters(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
public com.google.ortools.constraintsolver.RoutingModelParameters getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy