Google OR-Tools v9.12
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
CpModelProto.java
Go to the documentation of this file.
1// Generated by the protocol buffer compiler. DO NOT EDIT!
2// NO CHECKED-IN PROTOBUF GENCODE
3// source: ortools/sat/cp_model.proto
4// Protobuf Java Version: 4.29.3
5
6package com.google.ortools.sat;
7
15public final class CpModelProto extends
16 com.google.protobuf.GeneratedMessage implements
17 // @@protoc_insertion_point(message_implements:operations_research.sat.CpModelProto)
19private static final long serialVersionUID = 0L;
20 static {
21 com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
22 com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
23 /* major= */ 4,
24 /* minor= */ 29,
25 /* patch= */ 3,
26 /* suffix= */ "",
27 CpModelProto.class.getName());
28 }
29 // Use CpModelProto.newBuilder() to construct.
30 private CpModelProto(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
31 super(builder);
32 }
33 private CpModelProto() {
34 name_ = "";
35 variables_ = java.util.Collections.emptyList();
36 constraints_ = java.util.Collections.emptyList();
37 searchStrategy_ = java.util.Collections.emptyList();
38 assumptions_ = emptyIntList();
39 }
40
41 public static final com.google.protobuf.Descriptors.Descriptor
43 return com.google.ortools.sat.CpModelProtobuf.internal_static_operations_research_sat_CpModelProto_descriptor;
44 }
45
46 @java.lang.Override
47 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
49 return com.google.ortools.sat.CpModelProtobuf.internal_static_operations_research_sat_CpModelProto_fieldAccessorTable
50 .ensureFieldAccessorsInitialized(
51 com.google.ortools.sat.CpModelProto.class, com.google.ortools.sat.CpModelProto.Builder.class);
52 }
53
54 private int bitField0_;
55 public static final int NAME_FIELD_NUMBER = 1;
56 @SuppressWarnings("serial")
57 private volatile java.lang.Object name_ = "";
66 @java.lang.Override
67 public java.lang.String getName() {
68 java.lang.Object ref = name_;
69 if (ref instanceof java.lang.String) {
70 return (java.lang.String) ref;
71 } else {
72 com.google.protobuf.ByteString bs =
73 (com.google.protobuf.ByteString) ref;
74 java.lang.String s = bs.toStringUtf8();
75 name_ = s;
76 return s;
77 }
78 }
79
87 @java.lang.Override
88 public com.google.protobuf.ByteString
90 java.lang.Object ref = name_;
91 if (ref instanceof java.lang.String) {
92 com.google.protobuf.ByteString b =
93 com.google.protobuf.ByteString.copyFromUtf8(
94 (java.lang.String) ref);
95 name_ = b;
96 return b;
97 } else {
98 return (com.google.protobuf.ByteString) ref;
99 }
100 }
101
102 public static final int VARIABLES_FIELD_NUMBER = 2;
103 @SuppressWarnings("serial")
104 private java.util.List<com.google.ortools.sat.IntegerVariableProto> variables_;
112 @java.lang.Override
113 public java.util.List<com.google.ortools.sat.IntegerVariableProto> getVariablesList() {
114 return variables_;
115 }
116
123 @java.lang.Override
124 public java.util.List<? extends com.google.ortools.sat.IntegerVariableProtoOrBuilder>
126 return variables_;
127 }
128
135 @java.lang.Override
136 public int getVariablesCount() {
137 return variables_.size();
138 }
139
146 @java.lang.Override
148 return variables_.get(index);
149 }
150
157 @java.lang.Override
159 int index) {
160 return variables_.get(index);
161 }
162
163 public static final int CONSTRAINTS_FIELD_NUMBER = 3;
164 @SuppressWarnings("serial")
165 private java.util.List<com.google.ortools.sat.ConstraintProto> constraints_;
169 @java.lang.Override
170 public java.util.List<com.google.ortools.sat.ConstraintProto> getConstraintsList() {
171 return constraints_;
172 }
173
176 @java.lang.Override
177 public java.util.List<? extends com.google.ortools.sat.ConstraintProtoOrBuilder>
179 return constraints_;
180 }
181
184 @java.lang.Override
185 public int getConstraintsCount() {
186 return constraints_.size();
187 }
188
191 @java.lang.Override
193 return constraints_.get(index);
194 }
195
198 @java.lang.Override
200 int index) {
201 return constraints_.get(index);
202 }
203
204 public static final int OBJECTIVE_FIELD_NUMBER = 4;
214 @java.lang.Override
215 public boolean hasObjective() {
216 return ((bitField0_ & 0x00000001) != 0);
217 }
218
226 @java.lang.Override
228 return objective_ == null ? com.google.ortools.sat.CpObjectiveProto.getDefaultInstance() : objective_;
229 }
230
237 @java.lang.Override
239 return objective_ == null ? com.google.ortools.sat.CpObjectiveProto.getDefaultInstance() : objective_;
240 }
241
242 public static final int FLOATING_POINT_OBJECTIVE_FIELD_NUMBER = 9;
243 private com.google.ortools.sat.FloatObjectiveProto floatingPointObjective_;
264 @java.lang.Override
265 public boolean hasFloatingPointObjective() {
266 return ((bitField0_ & 0x00000002) != 0);
267 }
268
288 @java.lang.Override
290 return floatingPointObjective_ == null ? com.google.ortools.sat.FloatObjectiveProto.getDefaultInstance() : floatingPointObjective_;
291 }
292
311 @java.lang.Override
313 return floatingPointObjective_ == null ? com.google.ortools.sat.FloatObjectiveProto.getDefaultInstance() : floatingPointObjective_;
314 }
315
316 public static final int SEARCH_STRATEGY_FIELD_NUMBER = 5;
317 @SuppressWarnings("serial")
318 private java.util.List<com.google.ortools.sat.DecisionStrategyProto> searchStrategy_;
334 @java.lang.Override
336 return searchStrategy_;
337 }
338
353 @java.lang.Override
354 public java.util.List<? extends com.google.ortools.sat.DecisionStrategyProtoOrBuilder>
356 return searchStrategy_;
357 }
358
373 @java.lang.Override
375 return searchStrategy_.size();
376 }
377
392 @java.lang.Override
394 return searchStrategy_.get(index);
395 }
396
411 @java.lang.Override
413 int index) {
414 return searchStrategy_.get(index);
415 }
416
417 public static final int SOLUTION_HINT_FIELD_NUMBER = 6;
437 @java.lang.Override
438 public boolean hasSolutionHint() {
439 return ((bitField0_ & 0x00000004) != 0);
440 }
441
459 @java.lang.Override
461 return solutionHint_ == null ? com.google.ortools.sat.PartialVariableAssignment.getDefaultInstance() : solutionHint_;
462 }
463
480 @java.lang.Override
482 return solutionHint_ == null ? com.google.ortools.sat.PartialVariableAssignment.getDefaultInstance() : solutionHint_;
483 }
484
485 public static final int ASSUMPTIONS_FIELD_NUMBER = 7;
486 @SuppressWarnings("serial")
487 private com.google.protobuf.Internal.IntList assumptions_ =
488 emptyIntList();
509 @java.lang.Override
510 public java.util.List<java.lang.Integer>
512 return assumptions_;
513 }
514
534 public int getAssumptionsCount() {
535 return assumptions_.size();
536 }
537
558 public int getAssumptions(int index) {
559 return assumptions_.getInt(index);
560 }
561 private int assumptionsMemoizedSerializedSize = -1;
562
563 public static final int SYMMETRY_FIELD_NUMBER = 8;
564 private com.google.ortools.sat.SymmetryProto symmetry_;
577 @java.lang.Override
578 public boolean hasSymmetry() {
579 return ((bitField0_ & 0x00000008) != 0);
580 }
581
593 @java.lang.Override
595 return symmetry_ == null ? com.google.ortools.sat.SymmetryProto.getDefaultInstance() : symmetry_;
596 }
597
608 @java.lang.Override
610 return symmetry_ == null ? com.google.ortools.sat.SymmetryProto.getDefaultInstance() : symmetry_;
611 }
612
613 private byte memoizedIsInitialized = -1;
614 @java.lang.Override
615 public final boolean isInitialized() {
616 byte isInitialized = memoizedIsInitialized;
617 if (isInitialized == 1) return true;
618 if (isInitialized == 0) return false;
619
620 memoizedIsInitialized = 1;
621 return true;
622 }
623
624 @java.lang.Override
625 public void writeTo(com.google.protobuf.CodedOutputStream output)
626 throws java.io.IOException {
628 if (!com.google.protobuf.GeneratedMessage.isStringEmpty(name_)) {
629 com.google.protobuf.GeneratedMessage.writeString(output, 1, name_);
630 }
631 for (int i = 0; i < variables_.size(); i++) {
632 output.writeMessage(2, variables_.get(i));
633 }
634 for (int i = 0; i < constraints_.size(); i++) {
635 output.writeMessage(3, constraints_.get(i));
636 }
637 if (((bitField0_ & 0x00000001) != 0)) {
638 output.writeMessage(4, getObjective());
639 }
640 for (int i = 0; i < searchStrategy_.size(); i++) {
641 output.writeMessage(5, searchStrategy_.get(i));
642 }
643 if (((bitField0_ & 0x00000004) != 0)) {
644 output.writeMessage(6, getSolutionHint());
645 }
646 if (getAssumptionsList().size() > 0) {
647 output.writeUInt32NoTag(58);
648 output.writeUInt32NoTag(assumptionsMemoizedSerializedSize);
649 }
650 for (int i = 0; i < assumptions_.size(); i++) {
651 output.writeInt32NoTag(assumptions_.getInt(i));
652 }
653 if (((bitField0_ & 0x00000008) != 0)) {
654 output.writeMessage(8, getSymmetry());
655 }
656 if (((bitField0_ & 0x00000002) != 0)) {
657 output.writeMessage(9, getFloatingPointObjective());
658 }
659 getUnknownFields().writeTo(output);
660 }
661
662 @java.lang.Override
663 public int getSerializedSize() {
664 int size = memoizedSize;
665 if (size != -1) return size;
666
667 size = 0;
668 if (!com.google.protobuf.GeneratedMessage.isStringEmpty(name_)) {
669 size += com.google.protobuf.GeneratedMessage.computeStringSize(1, name_);
670 }
671 for (int i = 0; i < variables_.size(); i++) {
672 size += com.google.protobuf.CodedOutputStream
673 .computeMessageSize(2, variables_.get(i));
674 }
675 for (int i = 0; i < constraints_.size(); i++) {
676 size += com.google.protobuf.CodedOutputStream
677 .computeMessageSize(3, constraints_.get(i));
678 }
679 if (((bitField0_ & 0x00000001) != 0)) {
680 size += com.google.protobuf.CodedOutputStream
681 .computeMessageSize(4, getObjective());
682 }
683 for (int i = 0; i < searchStrategy_.size(); i++) {
684 size += com.google.protobuf.CodedOutputStream
685 .computeMessageSize(5, searchStrategy_.get(i));
686 }
687 if (((bitField0_ & 0x00000004) != 0)) {
688 size += com.google.protobuf.CodedOutputStream
689 .computeMessageSize(6, getSolutionHint());
690 }
691 {
692 int dataSize = 0;
693 for (int i = 0; i < assumptions_.size(); i++) {
694 dataSize += com.google.protobuf.CodedOutputStream
695 .computeInt32SizeNoTag(assumptions_.getInt(i));
696 }
697 size += dataSize;
698 if (!getAssumptionsList().isEmpty()) {
699 size += 1;
700 size += com.google.protobuf.CodedOutputStream
701 .computeInt32SizeNoTag(dataSize);
702 }
703 assumptionsMemoizedSerializedSize = dataSize;
704 }
705 if (((bitField0_ & 0x00000008) != 0)) {
706 size += com.google.protobuf.CodedOutputStream
707 .computeMessageSize(8, getSymmetry());
708 }
709 if (((bitField0_ & 0x00000002) != 0)) {
710 size += com.google.protobuf.CodedOutputStream
711 .computeMessageSize(9, getFloatingPointObjective());
712 }
713 size += getUnknownFields().getSerializedSize();
714 memoizedSize = size;
715 return size;
716 }
717
718 @java.lang.Override
719 public boolean equals(final java.lang.Object obj) {
720 if (obj == this) {
721 return true;
722 }
723 if (!(obj instanceof com.google.ortools.sat.CpModelProto)) {
724 return super.equals(obj);
725 }
726 com.google.ortools.sat.CpModelProto other = (com.google.ortools.sat.CpModelProto) obj;
727
728 if (!getName()
729 .equals(other.getName())) return false;
730 if (!getVariablesList()
731 .equals(other.getVariablesList())) return false;
732 if (!getConstraintsList()
733 .equals(other.getConstraintsList())) return false;
734 if (hasObjective() != other.hasObjective()) return false;
735 if (hasObjective()) {
736 if (!getObjective()
737 .equals(other.getObjective())) return false;
738 }
739 if (hasFloatingPointObjective() != other.hasFloatingPointObjective()) return false;
742 .equals(other.getFloatingPointObjective())) return false;
743 }
745 .equals(other.getSearchStrategyList())) return false;
746 if (hasSolutionHint() != other.hasSolutionHint()) return false;
747 if (hasSolutionHint()) {
748 if (!getSolutionHint()
749 .equals(other.getSolutionHint())) return false;
750 }
751 if (!getAssumptionsList()
752 .equals(other.getAssumptionsList())) return false;
753 if (hasSymmetry() != other.hasSymmetry()) return false;
754 if (hasSymmetry()) {
755 if (!getSymmetry()
756 .equals(other.getSymmetry())) return false;
757 }
758 if (!getUnknownFields().equals(other.getUnknownFields())) return false;
759 return true;
760 }
761
762 @java.lang.Override
763 public int hashCode() {
764 if (memoizedHashCode != 0) {
765 return memoizedHashCode;
766 }
767 int hash = 41;
768 hash = (19 * hash) + getDescriptor().hashCode();
769 hash = (37 * hash) + NAME_FIELD_NUMBER;
770 hash = (53 * hash) + getName().hashCode();
771 if (getVariablesCount() > 0) {
772 hash = (37 * hash) + VARIABLES_FIELD_NUMBER;
773 hash = (53 * hash) + getVariablesList().hashCode();
774 }
775 if (getConstraintsCount() > 0) {
776 hash = (37 * hash) + CONSTRAINTS_FIELD_NUMBER;
777 hash = (53 * hash) + getConstraintsList().hashCode();
778 }
779 if (hasObjective()) {
780 hash = (37 * hash) + OBJECTIVE_FIELD_NUMBER;
781 hash = (53 * hash) + getObjective().hashCode();
782 }
784 hash = (37 * hash) + FLOATING_POINT_OBJECTIVE_FIELD_NUMBER;
785 hash = (53 * hash) + getFloatingPointObjective().hashCode();
786 }
787 if (getSearchStrategyCount() > 0) {
788 hash = (37 * hash) + SEARCH_STRATEGY_FIELD_NUMBER;
789 hash = (53 * hash) + getSearchStrategyList().hashCode();
790 }
791 if (hasSolutionHint()) {
792 hash = (37 * hash) + SOLUTION_HINT_FIELD_NUMBER;
793 hash = (53 * hash) + getSolutionHint().hashCode();
794 }
795 if (getAssumptionsCount() > 0) {
796 hash = (37 * hash) + ASSUMPTIONS_FIELD_NUMBER;
797 hash = (53 * hash) + getAssumptionsList().hashCode();
798 }
799 if (hasSymmetry()) {
800 hash = (37 * hash) + SYMMETRY_FIELD_NUMBER;
801 hash = (53 * hash) + getSymmetry().hashCode();
802 }
803 hash = (29 * hash) + getUnknownFields().hashCode();
804 memoizedHashCode = hash;
805 return hash;
806 }
807
809 java.nio.ByteBuffer data)
810 throws com.google.protobuf.InvalidProtocolBufferException {
811 return PARSER.parseFrom(data);
812 }
814 java.nio.ByteBuffer data,
815 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
816 throws com.google.protobuf.InvalidProtocolBufferException {
817 return PARSER.parseFrom(data, extensionRegistry);
818 }
820 com.google.protobuf.ByteString data)
821 throws com.google.protobuf.InvalidProtocolBufferException {
822 return PARSER.parseFrom(data);
823 }
825 com.google.protobuf.ByteString data,
826 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
827 throws com.google.protobuf.InvalidProtocolBufferException {
828 return PARSER.parseFrom(data, extensionRegistry);
829 }
831 throws com.google.protobuf.InvalidProtocolBufferException {
832 return PARSER.parseFrom(data);
833 }
835 byte[] data,
836 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
837 throws com.google.protobuf.InvalidProtocolBufferException {
838 return PARSER.parseFrom(data, extensionRegistry);
839 }
840 public static com.google.ortools.sat.CpModelProto parseFrom(java.io.InputStream input)
841 throws java.io.IOException {
842 return com.google.protobuf.GeneratedMessage
843 .parseWithIOException(PARSER, input);
844 }
846 java.io.InputStream input,
847 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
848 throws java.io.IOException {
849 return com.google.protobuf.GeneratedMessage
850 .parseWithIOException(PARSER, input, extensionRegistry);
851 }
852
853 public static com.google.ortools.sat.CpModelProto parseDelimitedFrom(java.io.InputStream input)
854 throws java.io.IOException {
855 return com.google.protobuf.GeneratedMessage
856 .parseDelimitedWithIOException(PARSER, input);
857 }
858
860 java.io.InputStream input,
861 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
862 throws java.io.IOException {
863 return com.google.protobuf.GeneratedMessage
864 .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
865 }
867 com.google.protobuf.CodedInputStream input)
868 throws java.io.IOException {
869 return com.google.protobuf.GeneratedMessage
870 .parseWithIOException(PARSER, input);
871 }
873 com.google.protobuf.CodedInputStream input,
874 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
875 throws java.io.IOException {
876 return com.google.protobuf.GeneratedMessage
877 .parseWithIOException(PARSER, input, extensionRegistry);
878 }
879
880 @java.lang.Override
881 public Builder newBuilderForType() { return newBuilder(); }
882 public static Builder newBuilder() {
883 return DEFAULT_INSTANCE.toBuilder();
884 }
885 public static Builder newBuilder(com.google.ortools.sat.CpModelProto prototype) {
886 return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
887 }
888 @java.lang.Override
890 return this == DEFAULT_INSTANCE
891 ? new Builder() : new Builder().mergeFrom(this);
892 }
893
894 @java.lang.Override
896 com.google.protobuf.GeneratedMessage.BuilderParent parent) {
897 Builder builder = new Builder(parent);
898 return builder;
899 }
900
907 public static final class Builder extends
908 com.google.protobuf.GeneratedMessage.Builder<Builder> implements
909 // @@protoc_insertion_point(builder_implements:operations_research.sat.CpModelProto)
911 public static final com.google.protobuf.Descriptors.Descriptor
913 return com.google.ortools.sat.CpModelProtobuf.internal_static_operations_research_sat_CpModelProto_descriptor;
914 }
915
916 @java.lang.Override
917 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
919 return com.google.ortools.sat.CpModelProtobuf.internal_static_operations_research_sat_CpModelProto_fieldAccessorTable
920 .ensureFieldAccessorsInitialized(
921 com.google.ortools.sat.CpModelProto.class, com.google.ortools.sat.CpModelProto.Builder.class);
922 }
923
924 // Construct using com.google.ortools.sat.CpModelProto.newBuilder()
925 private Builder() {
926 maybeForceBuilderInitialization();
927 }
928
929 private Builder(
930 com.google.protobuf.GeneratedMessage.BuilderParent parent) {
931 super(parent);
932 maybeForceBuilderInitialization();
933 }
934 private void maybeForceBuilderInitialization() {
935 if (com.google.protobuf.GeneratedMessage
936 .alwaysUseFieldBuilders) {
937 getVariablesFieldBuilder();
938 getConstraintsFieldBuilder();
939 getObjectiveFieldBuilder();
940 getFloatingPointObjectiveFieldBuilder();
941 getSearchStrategyFieldBuilder();
942 getSolutionHintFieldBuilder();
943 getSymmetryFieldBuilder();
944 }
945 }
946 @java.lang.Override
947 public Builder clear() {
948 super.clear();
949 bitField0_ = 0;
950 name_ = "";
951 if (variablesBuilder_ == null) {
952 variables_ = java.util.Collections.emptyList();
953 } else {
954 variables_ = null;
955 variablesBuilder_.clear();
956 }
957 bitField0_ = (bitField0_ & ~0x00000002);
958 if (constraintsBuilder_ == null) {
959 constraints_ = java.util.Collections.emptyList();
960 } else {
961 constraints_ = null;
962 constraintsBuilder_.clear();
963 }
964 bitField0_ = (bitField0_ & ~0x00000004);
965 objective_ = null;
966 if (objectiveBuilder_ != null) {
967 objectiveBuilder_.dispose();
968 objectiveBuilder_ = null;
969 }
970 floatingPointObjective_ = null;
971 if (floatingPointObjectiveBuilder_ != null) {
972 floatingPointObjectiveBuilder_.dispose();
973 floatingPointObjectiveBuilder_ = null;
974 }
975 if (searchStrategyBuilder_ == null) {
976 searchStrategy_ = java.util.Collections.emptyList();
977 } else {
978 searchStrategy_ = null;
979 searchStrategyBuilder_.clear();
980 }
981 bitField0_ = (bitField0_ & ~0x00000020);
982 solutionHint_ = null;
983 if (solutionHintBuilder_ != null) {
984 solutionHintBuilder_.dispose();
985 solutionHintBuilder_ = null;
986 }
987 assumptions_ = emptyIntList();
988 symmetry_ = null;
989 if (symmetryBuilder_ != null) {
990 symmetryBuilder_.dispose();
991 symmetryBuilder_ = null;
992 }
993 return this;
994 }
995
996 @java.lang.Override
997 public com.google.protobuf.Descriptors.Descriptor
999 return com.google.ortools.sat.CpModelProtobuf.internal_static_operations_research_sat_CpModelProto_descriptor;
1000 }
1001
1002 @java.lang.Override
1004 return com.google.ortools.sat.CpModelProto.getDefaultInstance();
1005 }
1006
1007 @java.lang.Override
1010 if (!result.isInitialized()) {
1011 throw newUninitializedMessageException(result);
1012 }
1013 return result;
1014 }
1015
1016 @java.lang.Override
1018 com.google.ortools.sat.CpModelProto result = new com.google.ortools.sat.CpModelProto(this);
1019 buildPartialRepeatedFields(result);
1020 if (bitField0_ != 0) { buildPartial0(result); }
1021 onBuilt();
1022 return result;
1023 }
1024
1025 private void buildPartialRepeatedFields(com.google.ortools.sat.CpModelProto result) {
1026 if (variablesBuilder_ == null) {
1027 if (((bitField0_ & 0x00000002) != 0)) {
1028 variables_ = java.util.Collections.unmodifiableList(variables_);
1029 bitField0_ = (bitField0_ & ~0x00000002);
1030 }
1031 result.variables_ = variables_;
1032 } else {
1033 result.variables_ = variablesBuilder_.build();
1034 }
1035 if (constraintsBuilder_ == null) {
1036 if (((bitField0_ & 0x00000004) != 0)) {
1037 constraints_ = java.util.Collections.unmodifiableList(constraints_);
1038 bitField0_ = (bitField0_ & ~0x00000004);
1039 }
1040 result.constraints_ = constraints_;
1041 } else {
1042 result.constraints_ = constraintsBuilder_.build();
1043 }
1044 if (searchStrategyBuilder_ == null) {
1045 if (((bitField0_ & 0x00000020) != 0)) {
1046 searchStrategy_ = java.util.Collections.unmodifiableList(searchStrategy_);
1047 bitField0_ = (bitField0_ & ~0x00000020);
1048 }
1049 result.searchStrategy_ = searchStrategy_;
1050 } else {
1051 result.searchStrategy_ = searchStrategyBuilder_.build();
1052 }
1053 }
1054
1055 private void buildPartial0(com.google.ortools.sat.CpModelProto result) {
1056 int from_bitField0_ = bitField0_;
1057 if (((from_bitField0_ & 0x00000001) != 0)) {
1058 result.name_ = name_;
1059 }
1060 int to_bitField0_ = 0;
1061 if (((from_bitField0_ & 0x00000008) != 0)) {
1062 result.objective_ = objectiveBuilder_ == null
1063 ? objective_
1064 : objectiveBuilder_.build();
1065 to_bitField0_ |= 0x00000001;
1066 }
1067 if (((from_bitField0_ & 0x00000010) != 0)) {
1068 result.floatingPointObjective_ = floatingPointObjectiveBuilder_ == null
1069 ? floatingPointObjective_
1070 : floatingPointObjectiveBuilder_.build();
1071 to_bitField0_ |= 0x00000002;
1072 }
1073 if (((from_bitField0_ & 0x00000040) != 0)) {
1074 result.solutionHint_ = solutionHintBuilder_ == null
1075 ? solutionHint_
1076 : solutionHintBuilder_.build();
1077 to_bitField0_ |= 0x00000004;
1078 }
1079 if (((from_bitField0_ & 0x00000080) != 0)) {
1080 assumptions_.makeImmutable();
1081 result.assumptions_ = assumptions_;
1082 }
1083 if (((from_bitField0_ & 0x00000100) != 0)) {
1084 result.symmetry_ = symmetryBuilder_ == null
1085 ? symmetry_
1086 : symmetryBuilder_.build();
1087 to_bitField0_ |= 0x00000008;
1088 }
1089 result.bitField0_ |= to_bitField0_;
1090 }
1091
1092 @java.lang.Override
1093 public Builder mergeFrom(com.google.protobuf.Message other) {
1094 if (other instanceof com.google.ortools.sat.CpModelProto) {
1095 return mergeFrom((com.google.ortools.sat.CpModelProto)other);
1096 } else {
1097 super.mergeFrom(other);
1098 return this;
1099 }
1100 }
1101
1102 public Builder mergeFrom(com.google.ortools.sat.CpModelProto other) {
1103 if (other == com.google.ortools.sat.CpModelProto.getDefaultInstance()) return this;
1104 if (!other.getName().isEmpty()) {
1105 name_ = other.name_;
1106 bitField0_ |= 0x00000001;
1107 onChanged();
1108 }
1109 if (variablesBuilder_ == null) {
1110 if (!other.variables_.isEmpty()) {
1111 if (variables_.isEmpty()) {
1112 variables_ = other.variables_;
1113 bitField0_ = (bitField0_ & ~0x00000002);
1114 } else {
1115 ensureVariablesIsMutable();
1116 variables_.addAll(other.variables_);
1117 }
1118 onChanged();
1119 }
1120 } else {
1121 if (!other.variables_.isEmpty()) {
1122 if (variablesBuilder_.isEmpty()) {
1123 variablesBuilder_.dispose();
1124 variablesBuilder_ = null;
1125 variables_ = other.variables_;
1126 bitField0_ = (bitField0_ & ~0x00000002);
1127 variablesBuilder_ =
1128 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
1129 getVariablesFieldBuilder() : null;
1130 } else {
1131 variablesBuilder_.addAllMessages(other.variables_);
1132 }
1133 }
1134 }
1135 if (constraintsBuilder_ == null) {
1136 if (!other.constraints_.isEmpty()) {
1137 if (constraints_.isEmpty()) {
1138 constraints_ = other.constraints_;
1139 bitField0_ = (bitField0_ & ~0x00000004);
1140 } else {
1141 ensureConstraintsIsMutable();
1142 constraints_.addAll(other.constraints_);
1143 }
1144 onChanged();
1145 }
1146 } else {
1147 if (!other.constraints_.isEmpty()) {
1148 if (constraintsBuilder_.isEmpty()) {
1149 constraintsBuilder_.dispose();
1150 constraintsBuilder_ = null;
1151 constraints_ = other.constraints_;
1152 bitField0_ = (bitField0_ & ~0x00000004);
1153 constraintsBuilder_ =
1154 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
1155 getConstraintsFieldBuilder() : null;
1156 } else {
1157 constraintsBuilder_.addAllMessages(other.constraints_);
1158 }
1159 }
1160 }
1161 if (other.hasObjective()) {
1162 mergeObjective(other.getObjective());
1163 }
1164 if (other.hasFloatingPointObjective()) {
1165 mergeFloatingPointObjective(other.getFloatingPointObjective());
1166 }
1167 if (searchStrategyBuilder_ == null) {
1168 if (!other.searchStrategy_.isEmpty()) {
1169 if (searchStrategy_.isEmpty()) {
1170 searchStrategy_ = other.searchStrategy_;
1171 bitField0_ = (bitField0_ & ~0x00000020);
1172 } else {
1173 ensureSearchStrategyIsMutable();
1174 searchStrategy_.addAll(other.searchStrategy_);
1175 }
1176 onChanged();
1177 }
1178 } else {
1179 if (!other.searchStrategy_.isEmpty()) {
1180 if (searchStrategyBuilder_.isEmpty()) {
1181 searchStrategyBuilder_.dispose();
1182 searchStrategyBuilder_ = null;
1183 searchStrategy_ = other.searchStrategy_;
1184 bitField0_ = (bitField0_ & ~0x00000020);
1185 searchStrategyBuilder_ =
1186 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
1187 getSearchStrategyFieldBuilder() : null;
1188 } else {
1189 searchStrategyBuilder_.addAllMessages(other.searchStrategy_);
1190 }
1191 }
1192 }
1193 if (other.hasSolutionHint()) {
1194 mergeSolutionHint(other.getSolutionHint());
1195 }
1196 if (!other.assumptions_.isEmpty()) {
1197 if (assumptions_.isEmpty()) {
1198 assumptions_ = other.assumptions_;
1199 assumptions_.makeImmutable();
1200 bitField0_ |= 0x00000080;
1201 } else {
1202 ensureAssumptionsIsMutable();
1203 assumptions_.addAll(other.assumptions_);
1204 }
1205 onChanged();
1206 }
1207 if (other.hasSymmetry()) {
1208 mergeSymmetry(other.getSymmetry());
1209 }
1210 this.mergeUnknownFields(other.getUnknownFields());
1211 onChanged();
1212 return this;
1213 }
1214
1215 @java.lang.Override
1216 public final boolean isInitialized() {
1217 return true;
1218 }
1219
1220 @java.lang.Override
1221 public Builder mergeFrom(
1222 com.google.protobuf.CodedInputStream input,
1223 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1224 throws java.io.IOException {
1225 if (extensionRegistry == null) {
1226 throw new java.lang.NullPointerException();
1227 }
1228 try {
1229 boolean done = false;
1230 while (!done) {
1231 int tag = input.readTag();
1232 switch (tag) {
1233 case 0:
1234 done = true;
1235 break;
1236 case 10: {
1237 name_ = input.readStringRequireUtf8();
1238 bitField0_ |= 0x00000001;
1239 break;
1240 } // case 10
1241 case 18: {
1243 input.readMessage(
1244 com.google.ortools.sat.IntegerVariableProto.parser(),
1245 extensionRegistry);
1246 if (variablesBuilder_ == null) {
1247 ensureVariablesIsMutable();
1248 variables_.add(m);
1249 } else {
1250 variablesBuilder_.addMessage(m);
1251 }
1252 break;
1253 } // case 18
1254 case 26: {
1256 input.readMessage(
1257 com.google.ortools.sat.ConstraintProto.parser(),
1258 extensionRegistry);
1259 if (constraintsBuilder_ == null) {
1260 ensureConstraintsIsMutable();
1261 constraints_.add(m);
1262 } else {
1263 constraintsBuilder_.addMessage(m);
1264 }
1265 break;
1266 } // case 26
1267 case 34: {
1268 input.readMessage(
1269 getObjectiveFieldBuilder().getBuilder(),
1270 extensionRegistry);
1271 bitField0_ |= 0x00000008;
1272 break;
1273 } // case 34
1274 case 42: {
1276 input.readMessage(
1277 com.google.ortools.sat.DecisionStrategyProto.parser(),
1278 extensionRegistry);
1279 if (searchStrategyBuilder_ == null) {
1280 ensureSearchStrategyIsMutable();
1281 searchStrategy_.add(m);
1282 } else {
1283 searchStrategyBuilder_.addMessage(m);
1284 }
1285 break;
1286 } // case 42
1287 case 50: {
1288 input.readMessage(
1289 getSolutionHintFieldBuilder().getBuilder(),
1290 extensionRegistry);
1291 bitField0_ |= 0x00000040;
1292 break;
1293 } // case 50
1294 case 56: {
1295 int v = input.readInt32();
1296 ensureAssumptionsIsMutable();
1297 assumptions_.addInt(v);
1298 break;
1299 } // case 56
1300 case 58: {
1301 int length = input.readRawVarint32();
1302 int limit = input.pushLimit(length);
1303 ensureAssumptionsIsMutable();
1304 while (input.getBytesUntilLimit() > 0) {
1305 assumptions_.addInt(input.readInt32());
1306 }
1307 input.popLimit(limit);
1308 break;
1309 } // case 58
1310 case 66: {
1311 input.readMessage(
1312 getSymmetryFieldBuilder().getBuilder(),
1313 extensionRegistry);
1314 bitField0_ |= 0x00000100;
1315 break;
1316 } // case 66
1317 case 74: {
1318 input.readMessage(
1319 getFloatingPointObjectiveFieldBuilder().getBuilder(),
1320 extensionRegistry);
1321 bitField0_ |= 0x00000010;
1322 break;
1323 } // case 74
1324 default: {
1325 if (!super.parseUnknownField(input, extensionRegistry, tag)) {
1326 done = true; // was an endgroup tag
1327 }
1328 break;
1329 } // default:
1330 } // switch (tag)
1331 } // while (!done)
1332 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
1333 throw e.unwrapIOException();
1334 } finally {
1335 onChanged();
1336 } // finally
1337 return this;
1338 }
1339 private int bitField0_;
1340
1341 private java.lang.Object name_ = "";
1350 public java.lang.String getName() {
1351 java.lang.Object ref = name_;
1352 if (!(ref instanceof java.lang.String)) {
1353 com.google.protobuf.ByteString bs =
1354 (com.google.protobuf.ByteString) ref;
1355 java.lang.String s = bs.toStringUtf8();
1356 name_ = s;
1357 return s;
1358 } else {
1359 return (java.lang.String) ref;
1360 }
1361 }
1362
1370 public com.google.protobuf.ByteString
1372 java.lang.Object ref = name_;
1373 if (ref instanceof String) {
1374 com.google.protobuf.ByteString b =
1375 com.google.protobuf.ByteString.copyFromUtf8(
1376 (java.lang.String) ref);
1377 name_ = b;
1378 return b;
1379 } else {
1380 return (com.google.protobuf.ByteString) ref;
1381 }
1382 }
1383
1392 public Builder setName(
1393 java.lang.String value) {
1394 if (value == null) { throw new NullPointerException(); }
1395 name_ = value;
1396 bitField0_ |= 0x00000001;
1397 onChanged();
1398 return this;
1399 }
1400
1408 public Builder clearName() {
1409 name_ = getDefaultInstance().getName();
1410 bitField0_ = (bitField0_ & ~0x00000001);
1411 onChanged();
1412 return this;
1413 }
1414
1423 public Builder setNameBytes(
1424 com.google.protobuf.ByteString value) {
1425 if (value == null) { throw new NullPointerException(); }
1426 checkByteStringIsUtf8(value);
1427 name_ = value;
1428 bitField0_ |= 0x00000001;
1429 onChanged();
1430 return this;
1431 }
1432
1433 private java.util.List<com.google.ortools.sat.IntegerVariableProto> variables_ =
1434 java.util.Collections.emptyList();
1435 private void ensureVariablesIsMutable() {
1436 if (!((bitField0_ & 0x00000002) != 0)) {
1437 variables_ = new java.util.ArrayList<com.google.ortools.sat.IntegerVariableProto>(variables_);
1438 bitField0_ |= 0x00000002;
1439 }
1440 }
1441
1442 private com.google.protobuf.RepeatedFieldBuilder<
1443 com.google.ortools.sat.IntegerVariableProto, com.google.ortools.sat.IntegerVariableProto.Builder, com.google.ortools.sat.IntegerVariableProtoOrBuilder> variablesBuilder_;
1444
1452 public java.util.List<com.google.ortools.sat.IntegerVariableProto> getVariablesList() {
1453 if (variablesBuilder_ == null) {
1454 return java.util.Collections.unmodifiableList(variables_);
1455 } else {
1456 return variablesBuilder_.getMessageList();
1457 }
1458 }
1459
1466 public int getVariablesCount() {
1467 if (variablesBuilder_ == null) {
1468 return variables_.size();
1469 } else {
1470 return variablesBuilder_.getCount();
1471 }
1472 }
1473
1481 if (variablesBuilder_ == null) {
1482 return variables_.get(index);
1483 } else {
1484 return variablesBuilder_.getMessage(index);
1485 }
1486 }
1487
1494 public Builder setVariables(
1495 int index, com.google.ortools.sat.IntegerVariableProto value) {
1496 if (variablesBuilder_ == null) {
1497 if (value == null) {
1498 throw new NullPointerException();
1499 }
1500 ensureVariablesIsMutable();
1501 variables_.set(index, value);
1502 onChanged();
1503 } else {
1504 variablesBuilder_.setMessage(index, value);
1505 }
1506 return this;
1507 }
1508
1515 public Builder setVariables(
1516 int index, com.google.ortools.sat.IntegerVariableProto.Builder builderForValue) {
1517 if (variablesBuilder_ == null) {
1518 ensureVariablesIsMutable();
1519 variables_.set(index, builderForValue.build());
1520 onChanged();
1521 } else {
1522 variablesBuilder_.setMessage(index, builderForValue.build());
1523 }
1524 return this;
1525 }
1526
1533 public Builder addVariables(com.google.ortools.sat.IntegerVariableProto value) {
1534 if (variablesBuilder_ == null) {
1535 if (value == null) {
1536 throw new NullPointerException();
1537 }
1538 ensureVariablesIsMutable();
1539 variables_.add(value);
1540 onChanged();
1541 } else {
1542 variablesBuilder_.addMessage(value);
1543 }
1544 return this;
1545 }
1546
1553 public Builder addVariables(
1554 int index, com.google.ortools.sat.IntegerVariableProto value) {
1555 if (variablesBuilder_ == null) {
1556 if (value == null) {
1557 throw new NullPointerException();
1558 }
1559 ensureVariablesIsMutable();
1560 variables_.add(index, value);
1561 onChanged();
1562 } else {
1563 variablesBuilder_.addMessage(index, value);
1564 }
1565 return this;
1566 }
1567
1574 public Builder addVariables(
1575 com.google.ortools.sat.IntegerVariableProto.Builder builderForValue) {
1576 if (variablesBuilder_ == null) {
1577 ensureVariablesIsMutable();
1578 variables_.add(builderForValue.build());
1579 onChanged();
1580 } else {
1581 variablesBuilder_.addMessage(builderForValue.build());
1582 }
1583 return this;
1584 }
1585
1592 public Builder addVariables(
1593 int index, com.google.ortools.sat.IntegerVariableProto.Builder builderForValue) {
1594 if (variablesBuilder_ == null) {
1595 ensureVariablesIsMutable();
1596 variables_.add(index, builderForValue.build());
1597 onChanged();
1598 } else {
1599 variablesBuilder_.addMessage(index, builderForValue.build());
1600 }
1601 return this;
1602 }
1603
1610 public Builder addAllVariables(
1611 java.lang.Iterable<? extends com.google.ortools.sat.IntegerVariableProto> values) {
1612 if (variablesBuilder_ == null) {
1613 ensureVariablesIsMutable();
1614 com.google.protobuf.AbstractMessageLite.Builder.addAll(
1615 values, variables_);
1616 onChanged();
1617 } else {
1618 variablesBuilder_.addAllMessages(values);
1619 }
1620 return this;
1621 }
1622
1629 public Builder clearVariables() {
1630 if (variablesBuilder_ == null) {
1631 variables_ = java.util.Collections.emptyList();
1632 bitField0_ = (bitField0_ & ~0x00000002);
1633 onChanged();
1634 } else {
1635 variablesBuilder_.clear();
1636 }
1637 return this;
1638 }
1639
1646 public Builder removeVariables(int index) {
1647 if (variablesBuilder_ == null) {
1648 ensureVariablesIsMutable();
1649 variables_.remove(index);
1650 onChanged();
1651 } else {
1652 variablesBuilder_.remove(index);
1653 }
1654 return this;
1655 }
1656
1664 int index) {
1665 return getVariablesFieldBuilder().getBuilder(index);
1666 }
1667
1675 int index) {
1676 if (variablesBuilder_ == null) {
1677 return variables_.get(index); } else {
1678 return variablesBuilder_.getMessageOrBuilder(index);
1679 }
1680 }
1681
1688 public java.util.List<? extends com.google.ortools.sat.IntegerVariableProtoOrBuilder>
1690 if (variablesBuilder_ != null) {
1691 return variablesBuilder_.getMessageOrBuilderList();
1692 } else {
1693 return java.util.Collections.unmodifiableList(variables_);
1694 }
1695 }
1696
1704 return getVariablesFieldBuilder().addBuilder(
1705 com.google.ortools.sat.IntegerVariableProto.getDefaultInstance());
1706 }
1707
1715 int index) {
1716 return getVariablesFieldBuilder().addBuilder(
1717 index, com.google.ortools.sat.IntegerVariableProto.getDefaultInstance());
1718 }
1719
1726 public java.util.List<com.google.ortools.sat.IntegerVariableProto.Builder>
1728 return getVariablesFieldBuilder().getBuilderList();
1729 }
1730 private com.google.protobuf.RepeatedFieldBuilder<
1731 com.google.ortools.sat.IntegerVariableProto, com.google.ortools.sat.IntegerVariableProto.Builder, com.google.ortools.sat.IntegerVariableProtoOrBuilder>
1732 getVariablesFieldBuilder() {
1733 if (variablesBuilder_ == null) {
1734 variablesBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
1735 com.google.ortools.sat.IntegerVariableProto, com.google.ortools.sat.IntegerVariableProto.Builder, com.google.ortools.sat.IntegerVariableProtoOrBuilder>(
1736 variables_,
1737 ((bitField0_ & 0x00000002) != 0),
1738 getParentForChildren(),
1739 isClean());
1740 variables_ = null;
1741 }
1742 return variablesBuilder_;
1743 }
1744
1745 private java.util.List<com.google.ortools.sat.ConstraintProto> constraints_ =
1746 java.util.Collections.emptyList();
1747 private void ensureConstraintsIsMutable() {
1748 if (!((bitField0_ & 0x00000004) != 0)) {
1749 constraints_ = new java.util.ArrayList<com.google.ortools.sat.ConstraintProto>(constraints_);
1750 bitField0_ |= 0x00000004;
1751 }
1752 }
1753
1754 private com.google.protobuf.RepeatedFieldBuilder<
1755 com.google.ortools.sat.ConstraintProto, com.google.ortools.sat.ConstraintProto.Builder, com.google.ortools.sat.ConstraintProtoOrBuilder> constraintsBuilder_;
1756
1760 public java.util.List<com.google.ortools.sat.ConstraintProto> getConstraintsList() {
1761 if (constraintsBuilder_ == null) {
1762 return java.util.Collections.unmodifiableList(constraints_);
1763 } else {
1764 return constraintsBuilder_.getMessageList();
1765 }
1766 }
1767
1770 public int getConstraintsCount() {
1771 if (constraintsBuilder_ == null) {
1772 return constraints_.size();
1773 } else {
1774 return constraintsBuilder_.getCount();
1775 }
1776 }
1777
1781 if (constraintsBuilder_ == null) {
1782 return constraints_.get(index);
1783 } else {
1784 return constraintsBuilder_.getMessage(index);
1785 }
1786 }
1787
1790 public Builder setConstraints(
1791 int index, com.google.ortools.sat.ConstraintProto value) {
1792 if (constraintsBuilder_ == null) {
1793 if (value == null) {
1794 throw new NullPointerException();
1795 }
1796 ensureConstraintsIsMutable();
1797 constraints_.set(index, value);
1798 onChanged();
1799 } else {
1800 constraintsBuilder_.setMessage(index, value);
1801 }
1802 return this;
1803 }
1804
1807 public Builder setConstraints(
1808 int index, com.google.ortools.sat.ConstraintProto.Builder builderForValue) {
1809 if (constraintsBuilder_ == null) {
1810 ensureConstraintsIsMutable();
1811 constraints_.set(index, builderForValue.build());
1812 onChanged();
1813 } else {
1814 constraintsBuilder_.setMessage(index, builderForValue.build());
1815 }
1816 return this;
1817 }
1818
1821 public Builder addConstraints(com.google.ortools.sat.ConstraintProto value) {
1822 if (constraintsBuilder_ == null) {
1823 if (value == null) {
1824 throw new NullPointerException();
1825 }
1826 ensureConstraintsIsMutable();
1827 constraints_.add(value);
1828 onChanged();
1829 } else {
1830 constraintsBuilder_.addMessage(value);
1831 }
1832 return this;
1833 }
1834
1837 public Builder addConstraints(
1838 int index, com.google.ortools.sat.ConstraintProto value) {
1839 if (constraintsBuilder_ == null) {
1840 if (value == null) {
1841 throw new NullPointerException();
1842 }
1843 ensureConstraintsIsMutable();
1844 constraints_.add(index, value);
1845 onChanged();
1846 } else {
1847 constraintsBuilder_.addMessage(index, value);
1848 }
1849 return this;
1850 }
1851
1854 public Builder addConstraints(
1855 com.google.ortools.sat.ConstraintProto.Builder builderForValue) {
1856 if (constraintsBuilder_ == null) {
1857 ensureConstraintsIsMutable();
1858 constraints_.add(builderForValue.build());
1859 onChanged();
1860 } else {
1861 constraintsBuilder_.addMessage(builderForValue.build());
1862 }
1863 return this;
1864 }
1865
1868 public Builder addConstraints(
1869 int index, com.google.ortools.sat.ConstraintProto.Builder builderForValue) {
1870 if (constraintsBuilder_ == null) {
1871 ensureConstraintsIsMutable();
1872 constraints_.add(index, builderForValue.build());
1873 onChanged();
1874 } else {
1875 constraintsBuilder_.addMessage(index, builderForValue.build());
1876 }
1877 return this;
1878 }
1879
1882 public Builder addAllConstraints(
1883 java.lang.Iterable<? extends com.google.ortools.sat.ConstraintProto> values) {
1884 if (constraintsBuilder_ == null) {
1885 ensureConstraintsIsMutable();
1886 com.google.protobuf.AbstractMessageLite.Builder.addAll(
1887 values, constraints_);
1888 onChanged();
1889 } else {
1890 constraintsBuilder_.addAllMessages(values);
1891 }
1892 return this;
1893 }
1894
1897 public Builder clearConstraints() {
1898 if (constraintsBuilder_ == null) {
1899 constraints_ = java.util.Collections.emptyList();
1900 bitField0_ = (bitField0_ & ~0x00000004);
1901 onChanged();
1902 } else {
1903 constraintsBuilder_.clear();
1904 }
1905 return this;
1906 }
1907
1910 public Builder removeConstraints(int index) {
1911 if (constraintsBuilder_ == null) {
1912 ensureConstraintsIsMutable();
1913 constraints_.remove(index);
1914 onChanged();
1915 } else {
1916 constraintsBuilder_.remove(index);
1917 }
1918 return this;
1919 }
1920
1924 int index) {
1925 return getConstraintsFieldBuilder().getBuilder(index);
1926 }
1927
1931 int index) {
1932 if (constraintsBuilder_ == null) {
1933 return constraints_.get(index); } else {
1934 return constraintsBuilder_.getMessageOrBuilder(index);
1935 }
1936 }
1937
1940 public java.util.List<? extends com.google.ortools.sat.ConstraintProtoOrBuilder>
1942 if (constraintsBuilder_ != null) {
1943 return constraintsBuilder_.getMessageOrBuilderList();
1944 } else {
1945 return java.util.Collections.unmodifiableList(constraints_);
1946 }
1947 }
1948
1952 return getConstraintsFieldBuilder().addBuilder(
1953 com.google.ortools.sat.ConstraintProto.getDefaultInstance());
1954 }
1955
1959 int index) {
1960 return getConstraintsFieldBuilder().addBuilder(
1961 index, com.google.ortools.sat.ConstraintProto.getDefaultInstance());
1962 }
1963
1966 public java.util.List<com.google.ortools.sat.ConstraintProto.Builder>
1968 return getConstraintsFieldBuilder().getBuilderList();
1969 }
1970 private com.google.protobuf.RepeatedFieldBuilder<
1971 com.google.ortools.sat.ConstraintProto, com.google.ortools.sat.ConstraintProto.Builder, com.google.ortools.sat.ConstraintProtoOrBuilder>
1972 getConstraintsFieldBuilder() {
1973 if (constraintsBuilder_ == null) {
1974 constraintsBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
1975 com.google.ortools.sat.ConstraintProto, com.google.ortools.sat.ConstraintProto.Builder, com.google.ortools.sat.ConstraintProtoOrBuilder>(
1976 constraints_,
1977 ((bitField0_ & 0x00000004) != 0),
1978 getParentForChildren(),
1979 isClean());
1980 constraints_ = null;
1981 }
1982 return constraintsBuilder_;
1983 }
1984
1985 private com.google.ortools.sat.CpObjectiveProto objective_;
1986 private com.google.protobuf.SingleFieldBuilder<
1987 com.google.ortools.sat.CpObjectiveProto, com.google.ortools.sat.CpObjectiveProto.Builder, com.google.ortools.sat.CpObjectiveProtoOrBuilder> objectiveBuilder_;
1996 public boolean hasObjective() {
1997 return ((bitField0_ & 0x00000008) != 0);
1998 }
1999
2008 if (objectiveBuilder_ == null) {
2009 return objective_ == null ? com.google.ortools.sat.CpObjectiveProto.getDefaultInstance() : objective_;
2010 } else {
2011 return objectiveBuilder_.getMessage();
2012 }
2013 }
2014
2021 public Builder setObjective(com.google.ortools.sat.CpObjectiveProto value) {
2022 if (objectiveBuilder_ == null) {
2023 if (value == null) {
2024 throw new NullPointerException();
2025 }
2026 objective_ = value;
2027 } else {
2028 objectiveBuilder_.setMessage(value);
2029 }
2030 bitField0_ |= 0x00000008;
2031 onChanged();
2032 return this;
2033 }
2034
2041 public Builder setObjective(
2042 com.google.ortools.sat.CpObjectiveProto.Builder builderForValue) {
2043 if (objectiveBuilder_ == null) {
2044 objective_ = builderForValue.build();
2045 } else {
2046 objectiveBuilder_.setMessage(builderForValue.build());
2047 }
2048 bitField0_ |= 0x00000008;
2049 onChanged();
2050 return this;
2051 }
2052
2059 public Builder mergeObjective(com.google.ortools.sat.CpObjectiveProto value) {
2060 if (objectiveBuilder_ == null) {
2061 if (((bitField0_ & 0x00000008) != 0) &&
2062 objective_ != null &&
2063 objective_ != com.google.ortools.sat.CpObjectiveProto.getDefaultInstance()) {
2064 getObjectiveBuilder().mergeFrom(value);
2065 } else {
2066 objective_ = value;
2067 }
2068 } else {
2069 objectiveBuilder_.mergeFrom(value);
2070 }
2071 if (objective_ != null) {
2072 bitField0_ |= 0x00000008;
2073 onChanged();
2074 }
2075 return this;
2076 }
2077
2084 public Builder clearObjective() {
2085 bitField0_ = (bitField0_ & ~0x00000008);
2086 objective_ = null;
2087 if (objectiveBuilder_ != null) {
2088 objectiveBuilder_.dispose();
2089 objectiveBuilder_ = null;
2090 }
2091 onChanged();
2092 return this;
2093 }
2094
2102 bitField0_ |= 0x00000008;
2103 onChanged();
2104 return getObjectiveFieldBuilder().getBuilder();
2105 }
2106
2114 if (objectiveBuilder_ != null) {
2115 return objectiveBuilder_.getMessageOrBuilder();
2116 } else {
2117 return objective_ == null ?
2118 com.google.ortools.sat.CpObjectiveProto.getDefaultInstance() : objective_;
2119 }
2120 }
2121
2128 private com.google.protobuf.SingleFieldBuilder<
2129 com.google.ortools.sat.CpObjectiveProto, com.google.ortools.sat.CpObjectiveProto.Builder, com.google.ortools.sat.CpObjectiveProtoOrBuilder>
2130 getObjectiveFieldBuilder() {
2131 if (objectiveBuilder_ == null) {
2132 objectiveBuilder_ = new com.google.protobuf.SingleFieldBuilder<
2133 com.google.ortools.sat.CpObjectiveProto, com.google.ortools.sat.CpObjectiveProto.Builder, com.google.ortools.sat.CpObjectiveProtoOrBuilder>(
2134 getObjective(),
2135 getParentForChildren(),
2136 isClean());
2137 objective_ = null;
2138 }
2139 return objectiveBuilder_;
2140 }
2141
2142 private com.google.ortools.sat.FloatObjectiveProto floatingPointObjective_;
2143 private com.google.protobuf.SingleFieldBuilder<
2144 com.google.ortools.sat.FloatObjectiveProto, com.google.ortools.sat.FloatObjectiveProto.Builder, com.google.ortools.sat.FloatObjectiveProtoOrBuilder> floatingPointObjectiveBuilder_;
2165 public boolean hasFloatingPointObjective() {
2166 return ((bitField0_ & 0x00000010) != 0);
2167 }
2168
2189 if (floatingPointObjectiveBuilder_ == null) {
2190 return floatingPointObjective_ == null ? com.google.ortools.sat.FloatObjectiveProto.getDefaultInstance() : floatingPointObjective_;
2191 } else {
2192 return floatingPointObjectiveBuilder_.getMessage();
2193 }
2194 }
2195
2214 public Builder setFloatingPointObjective(com.google.ortools.sat.FloatObjectiveProto value) {
2215 if (floatingPointObjectiveBuilder_ == null) {
2216 if (value == null) {
2217 throw new NullPointerException();
2218 }
2219 floatingPointObjective_ = value;
2220 } else {
2221 floatingPointObjectiveBuilder_.setMessage(value);
2222 }
2223 bitField0_ |= 0x00000010;
2224 onChanged();
2225 return this;
2226 }
2227
2247 com.google.ortools.sat.FloatObjectiveProto.Builder builderForValue) {
2248 if (floatingPointObjectiveBuilder_ == null) {
2249 floatingPointObjective_ = builderForValue.build();
2250 } else {
2251 floatingPointObjectiveBuilder_.setMessage(builderForValue.build());
2252 }
2253 bitField0_ |= 0x00000010;
2254 onChanged();
2255 return this;
2256 }
2257
2276 public Builder mergeFloatingPointObjective(com.google.ortools.sat.FloatObjectiveProto value) {
2277 if (floatingPointObjectiveBuilder_ == null) {
2278 if (((bitField0_ & 0x00000010) != 0) &&
2279 floatingPointObjective_ != null &&
2280 floatingPointObjective_ != com.google.ortools.sat.FloatObjectiveProto.getDefaultInstance()) {
2281 getFloatingPointObjectiveBuilder().mergeFrom(value);
2282 } else {
2283 floatingPointObjective_ = value;
2284 }
2285 } else {
2286 floatingPointObjectiveBuilder_.mergeFrom(value);
2287 }
2288 if (floatingPointObjective_ != null) {
2289 bitField0_ |= 0x00000010;
2290 onChanged();
2291 }
2292 return this;
2293 }
2294
2314 bitField0_ = (bitField0_ & ~0x00000010);
2315 floatingPointObjective_ = null;
2316 if (floatingPointObjectiveBuilder_ != null) {
2317 floatingPointObjectiveBuilder_.dispose();
2318 floatingPointObjectiveBuilder_ = null;
2319 }
2320 onChanged();
2321 return this;
2322 }
2323
2343 bitField0_ |= 0x00000010;
2344 onChanged();
2345 return getFloatingPointObjectiveFieldBuilder().getBuilder();
2346 }
2347
2367 if (floatingPointObjectiveBuilder_ != null) {
2368 return floatingPointObjectiveBuilder_.getMessageOrBuilder();
2369 } else {
2370 return floatingPointObjective_ == null ?
2371 com.google.ortools.sat.FloatObjectiveProto.getDefaultInstance() : floatingPointObjective_;
2372 }
2373 }
2374
2393 private com.google.protobuf.SingleFieldBuilder<
2394 com.google.ortools.sat.FloatObjectiveProto, com.google.ortools.sat.FloatObjectiveProto.Builder, com.google.ortools.sat.FloatObjectiveProtoOrBuilder>
2395 getFloatingPointObjectiveFieldBuilder() {
2396 if (floatingPointObjectiveBuilder_ == null) {
2397 floatingPointObjectiveBuilder_ = new com.google.protobuf.SingleFieldBuilder<
2398 com.google.ortools.sat.FloatObjectiveProto, com.google.ortools.sat.FloatObjectiveProto.Builder, com.google.ortools.sat.FloatObjectiveProtoOrBuilder>(
2400 getParentForChildren(),
2401 isClean());
2402 floatingPointObjective_ = null;
2403 }
2404 return floatingPointObjectiveBuilder_;
2405 }
2406
2407 private java.util.List<com.google.ortools.sat.DecisionStrategyProto> searchStrategy_ =
2408 java.util.Collections.emptyList();
2409 private void ensureSearchStrategyIsMutable() {
2410 if (!((bitField0_ & 0x00000020) != 0)) {
2411 searchStrategy_ = new java.util.ArrayList<com.google.ortools.sat.DecisionStrategyProto>(searchStrategy_);
2412 bitField0_ |= 0x00000020;
2413 }
2414 }
2415
2416 private com.google.protobuf.RepeatedFieldBuilder<
2417 com.google.ortools.sat.DecisionStrategyProto, com.google.ortools.sat.DecisionStrategyProto.Builder, com.google.ortools.sat.DecisionStrategyProtoOrBuilder> searchStrategyBuilder_;
2418
2434 public java.util.List<com.google.ortools.sat.DecisionStrategyProto> getSearchStrategyList() {
2435 if (searchStrategyBuilder_ == null) {
2436 return java.util.Collections.unmodifiableList(searchStrategy_);
2437 } else {
2438 return searchStrategyBuilder_.getMessageList();
2439 }
2440 }
2441
2457 if (searchStrategyBuilder_ == null) {
2458 return searchStrategy_.size();
2459 } else {
2460 return searchStrategyBuilder_.getCount();
2461 }
2462 }
2463
2479 if (searchStrategyBuilder_ == null) {
2480 return searchStrategy_.get(index);
2481 } else {
2482 return searchStrategyBuilder_.getMessage(index);
2483 }
2484 }
2485
2500 public Builder setSearchStrategy(
2501 int index, com.google.ortools.sat.DecisionStrategyProto value) {
2502 if (searchStrategyBuilder_ == null) {
2503 if (value == null) {
2504 throw new NullPointerException();
2505 }
2506 ensureSearchStrategyIsMutable();
2507 searchStrategy_.set(index, value);
2508 onChanged();
2509 } else {
2510 searchStrategyBuilder_.setMessage(index, value);
2511 }
2512 return this;
2513 }
2514
2529 public Builder setSearchStrategy(
2530 int index, com.google.ortools.sat.DecisionStrategyProto.Builder builderForValue) {
2531 if (searchStrategyBuilder_ == null) {
2532 ensureSearchStrategyIsMutable();
2533 searchStrategy_.set(index, builderForValue.build());
2534 onChanged();
2535 } else {
2536 searchStrategyBuilder_.setMessage(index, builderForValue.build());
2537 }
2538 return this;
2539 }
2540
2555 public Builder addSearchStrategy(com.google.ortools.sat.DecisionStrategyProto value) {
2556 if (searchStrategyBuilder_ == null) {
2557 if (value == null) {
2558 throw new NullPointerException();
2559 }
2560 ensureSearchStrategyIsMutable();
2561 searchStrategy_.add(value);
2562 onChanged();
2563 } else {
2564 searchStrategyBuilder_.addMessage(value);
2565 }
2566 return this;
2567 }
2568
2583 public Builder addSearchStrategy(
2584 int index, com.google.ortools.sat.DecisionStrategyProto value) {
2585 if (searchStrategyBuilder_ == null) {
2586 if (value == null) {
2587 throw new NullPointerException();
2588 }
2589 ensureSearchStrategyIsMutable();
2590 searchStrategy_.add(index, value);
2591 onChanged();
2592 } else {
2593 searchStrategyBuilder_.addMessage(index, value);
2594 }
2595 return this;
2596 }
2597
2612 public Builder addSearchStrategy(
2613 com.google.ortools.sat.DecisionStrategyProto.Builder builderForValue) {
2614 if (searchStrategyBuilder_ == null) {
2615 ensureSearchStrategyIsMutable();
2616 searchStrategy_.add(builderForValue.build());
2617 onChanged();
2618 } else {
2619 searchStrategyBuilder_.addMessage(builderForValue.build());
2620 }
2621 return this;
2622 }
2623
2638 public Builder addSearchStrategy(
2639 int index, com.google.ortools.sat.DecisionStrategyProto.Builder builderForValue) {
2640 if (searchStrategyBuilder_ == null) {
2641 ensureSearchStrategyIsMutable();
2642 searchStrategy_.add(index, builderForValue.build());
2643 onChanged();
2644 } else {
2645 searchStrategyBuilder_.addMessage(index, builderForValue.build());
2646 }
2647 return this;
2648 }
2649
2664 public Builder addAllSearchStrategy(
2665 java.lang.Iterable<? extends com.google.ortools.sat.DecisionStrategyProto> values) {
2666 if (searchStrategyBuilder_ == null) {
2667 ensureSearchStrategyIsMutable();
2668 com.google.protobuf.AbstractMessageLite.Builder.addAll(
2669 values, searchStrategy_);
2670 onChanged();
2671 } else {
2672 searchStrategyBuilder_.addAllMessages(values);
2673 }
2674 return this;
2675 }
2676
2691 public Builder clearSearchStrategy() {
2692 if (searchStrategyBuilder_ == null) {
2693 searchStrategy_ = java.util.Collections.emptyList();
2694 bitField0_ = (bitField0_ & ~0x00000020);
2695 onChanged();
2696 } else {
2697 searchStrategyBuilder_.clear();
2698 }
2699 return this;
2700 }
2701
2716 public Builder removeSearchStrategy(int index) {
2717 if (searchStrategyBuilder_ == null) {
2718 ensureSearchStrategyIsMutable();
2719 searchStrategy_.remove(index);
2720 onChanged();
2721 } else {
2722 searchStrategyBuilder_.remove(index);
2723 }
2724 return this;
2725 }
2726
2742 int index) {
2743 return getSearchStrategyFieldBuilder().getBuilder(index);
2744 }
2745
2761 int index) {
2762 if (searchStrategyBuilder_ == null) {
2763 return searchStrategy_.get(index); } else {
2764 return searchStrategyBuilder_.getMessageOrBuilder(index);
2765 }
2766 }
2767
2782 public java.util.List<? extends com.google.ortools.sat.DecisionStrategyProtoOrBuilder>
2784 if (searchStrategyBuilder_ != null) {
2785 return searchStrategyBuilder_.getMessageOrBuilderList();
2786 } else {
2787 return java.util.Collections.unmodifiableList(searchStrategy_);
2788 }
2789 }
2790
2806 return getSearchStrategyFieldBuilder().addBuilder(
2807 com.google.ortools.sat.DecisionStrategyProto.getDefaultInstance());
2808 }
2809
2825 int index) {
2826 return getSearchStrategyFieldBuilder().addBuilder(
2827 index, com.google.ortools.sat.DecisionStrategyProto.getDefaultInstance());
2828 }
2829
2844 public java.util.List<com.google.ortools.sat.DecisionStrategyProto.Builder>
2846 return getSearchStrategyFieldBuilder().getBuilderList();
2847 }
2848 private com.google.protobuf.RepeatedFieldBuilder<
2849 com.google.ortools.sat.DecisionStrategyProto, com.google.ortools.sat.DecisionStrategyProto.Builder, com.google.ortools.sat.DecisionStrategyProtoOrBuilder>
2850 getSearchStrategyFieldBuilder() {
2851 if (searchStrategyBuilder_ == null) {
2852 searchStrategyBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
2853 com.google.ortools.sat.DecisionStrategyProto, com.google.ortools.sat.DecisionStrategyProto.Builder, com.google.ortools.sat.DecisionStrategyProtoOrBuilder>(
2854 searchStrategy_,
2855 ((bitField0_ & 0x00000020) != 0),
2856 getParentForChildren(),
2857 isClean());
2858 searchStrategy_ = null;
2859 }
2860 return searchStrategyBuilder_;
2861 }
2862
2864 private com.google.protobuf.SingleFieldBuilder<
2865 com.google.ortools.sat.PartialVariableAssignment, com.google.ortools.sat.PartialVariableAssignment.Builder, com.google.ortools.sat.PartialVariableAssignmentOrBuilder> solutionHintBuilder_;
2884 public boolean hasSolutionHint() {
2885 return ((bitField0_ & 0x00000040) != 0);
2886 }
2887
2906 if (solutionHintBuilder_ == null) {
2907 return solutionHint_ == null ? com.google.ortools.sat.PartialVariableAssignment.getDefaultInstance() : solutionHint_;
2908 } else {
2909 return solutionHintBuilder_.getMessage();
2910 }
2911 }
2912
2929 public Builder setSolutionHint(com.google.ortools.sat.PartialVariableAssignment value) {
2930 if (solutionHintBuilder_ == null) {
2931 if (value == null) {
2932 throw new NullPointerException();
2933 }
2934 solutionHint_ = value;
2935 } else {
2936 solutionHintBuilder_.setMessage(value);
2937 }
2938 bitField0_ |= 0x00000040;
2939 onChanged();
2940 return this;
2941 }
2942
2959 public Builder setSolutionHint(
2960 com.google.ortools.sat.PartialVariableAssignment.Builder builderForValue) {
2961 if (solutionHintBuilder_ == null) {
2962 solutionHint_ = builderForValue.build();
2963 } else {
2964 solutionHintBuilder_.setMessage(builderForValue.build());
2965 }
2966 bitField0_ |= 0x00000040;
2967 onChanged();
2968 return this;
2969 }
2970
2987 public Builder mergeSolutionHint(com.google.ortools.sat.PartialVariableAssignment value) {
2988 if (solutionHintBuilder_ == null) {
2989 if (((bitField0_ & 0x00000040) != 0) &&
2990 solutionHint_ != null &&
2991 solutionHint_ != com.google.ortools.sat.PartialVariableAssignment.getDefaultInstance()) {
2992 getSolutionHintBuilder().mergeFrom(value);
2993 } else {
2994 solutionHint_ = value;
2995 }
2996 } else {
2997 solutionHintBuilder_.mergeFrom(value);
2998 }
2999 if (solutionHint_ != null) {
3000 bitField0_ |= 0x00000040;
3001 onChanged();
3002 }
3003 return this;
3004 }
3005
3022 public Builder clearSolutionHint() {
3023 bitField0_ = (bitField0_ & ~0x00000040);
3024 solutionHint_ = null;
3025 if (solutionHintBuilder_ != null) {
3026 solutionHintBuilder_.dispose();
3027 solutionHintBuilder_ = null;
3028 }
3029 onChanged();
3030 return this;
3031 }
3032
3050 bitField0_ |= 0x00000040;
3051 onChanged();
3052 return getSolutionHintFieldBuilder().getBuilder();
3053 }
3054
3072 if (solutionHintBuilder_ != null) {
3073 return solutionHintBuilder_.getMessageOrBuilder();
3074 } else {
3075 return solutionHint_ == null ?
3076 com.google.ortools.sat.PartialVariableAssignment.getDefaultInstance() : solutionHint_;
3077 }
3078 }
3079
3096 private com.google.protobuf.SingleFieldBuilder<
3097 com.google.ortools.sat.PartialVariableAssignment, com.google.ortools.sat.PartialVariableAssignment.Builder, com.google.ortools.sat.PartialVariableAssignmentOrBuilder>
3098 getSolutionHintFieldBuilder() {
3099 if (solutionHintBuilder_ == null) {
3100 solutionHintBuilder_ = new com.google.protobuf.SingleFieldBuilder<
3101 com.google.ortools.sat.PartialVariableAssignment, com.google.ortools.sat.PartialVariableAssignment.Builder, com.google.ortools.sat.PartialVariableAssignmentOrBuilder>(
3103 getParentForChildren(),
3104 isClean());
3105 solutionHint_ = null;
3106 }
3107 return solutionHintBuilder_;
3108 }
3109
3110 private com.google.protobuf.Internal.IntList assumptions_ = emptyIntList();
3111 private void ensureAssumptionsIsMutable() {
3112 if (!assumptions_.isModifiable()) {
3113 assumptions_ = makeMutableCopy(assumptions_);
3114 }
3115 bitField0_ |= 0x00000080;
3116 }
3137 public java.util.List<java.lang.Integer>
3139 assumptions_.makeImmutable();
3140 return assumptions_;
3141 }
3142
3162 public int getAssumptionsCount() {
3163 return assumptions_.size();
3164 }
3165
3186 public int getAssumptions(int index) {
3187 return assumptions_.getInt(index);
3188 }
3189
3211 public Builder setAssumptions(
3212 int index, int value) {
3213
3214 ensureAssumptionsIsMutable();
3215 assumptions_.setInt(index, value);
3216 bitField0_ |= 0x00000080;
3217 onChanged();
3218 return this;
3219 }
3220
3241 public Builder addAssumptions(int value) {
3242
3243 ensureAssumptionsIsMutable();
3244 assumptions_.addInt(value);
3245 bitField0_ |= 0x00000080;
3246 onChanged();
3247 return this;
3248 }
3249
3270 public Builder addAllAssumptions(
3271 java.lang.Iterable<? extends java.lang.Integer> values) {
3272 ensureAssumptionsIsMutable();
3273 com.google.protobuf.AbstractMessageLite.Builder.addAll(
3274 values, assumptions_);
3275 bitField0_ |= 0x00000080;
3276 onChanged();
3277 return this;
3278 }
3279
3299 public Builder clearAssumptions() {
3300 assumptions_ = emptyIntList();
3301 bitField0_ = (bitField0_ & ~0x00000080);
3302 onChanged();
3303 return this;
3304 }
3305
3306 private com.google.ortools.sat.SymmetryProto symmetry_;
3307 private com.google.protobuf.SingleFieldBuilder<
3308 com.google.ortools.sat.SymmetryProto, com.google.ortools.sat.SymmetryProto.Builder, com.google.ortools.sat.SymmetryProtoOrBuilder> symmetryBuilder_;
3321 public boolean hasSymmetry() {
3322 return ((bitField0_ & 0x00000100) != 0);
3323 }
3324
3337 if (symmetryBuilder_ == null) {
3338 return symmetry_ == null ? com.google.ortools.sat.SymmetryProto.getDefaultInstance() : symmetry_;
3339 } else {
3340 return symmetryBuilder_.getMessage();
3341 }
3342 }
3343
3354 public Builder setSymmetry(com.google.ortools.sat.SymmetryProto value) {
3355 if (symmetryBuilder_ == null) {
3356 if (value == null) {
3357 throw new NullPointerException();
3358 }
3359 symmetry_ = value;
3360 } else {
3361 symmetryBuilder_.setMessage(value);
3362 }
3363 bitField0_ |= 0x00000100;
3364 onChanged();
3365 return this;
3366 }
3367
3378 public Builder setSymmetry(
3379 com.google.ortools.sat.SymmetryProto.Builder builderForValue) {
3380 if (symmetryBuilder_ == null) {
3381 symmetry_ = builderForValue.build();
3382 } else {
3383 symmetryBuilder_.setMessage(builderForValue.build());
3384 }
3385 bitField0_ |= 0x00000100;
3386 onChanged();
3387 return this;
3388 }
3389
3400 public Builder mergeSymmetry(com.google.ortools.sat.SymmetryProto value) {
3401 if (symmetryBuilder_ == null) {
3402 if (((bitField0_ & 0x00000100) != 0) &&
3403 symmetry_ != null &&
3404 symmetry_ != com.google.ortools.sat.SymmetryProto.getDefaultInstance()) {
3405 getSymmetryBuilder().mergeFrom(value);
3406 } else {
3407 symmetry_ = value;
3408 }
3409 } else {
3410 symmetryBuilder_.mergeFrom(value);
3411 }
3412 if (symmetry_ != null) {
3413 bitField0_ |= 0x00000100;
3414 onChanged();
3415 }
3416 return this;
3417 }
3418
3429 public Builder clearSymmetry() {
3430 bitField0_ = (bitField0_ & ~0x00000100);
3431 symmetry_ = null;
3432 if (symmetryBuilder_ != null) {
3433 symmetryBuilder_.dispose();
3434 symmetryBuilder_ = null;
3435 }
3436 onChanged();
3437 return this;
3438 }
3439
3451 bitField0_ |= 0x00000100;
3452 onChanged();
3453 return getSymmetryFieldBuilder().getBuilder();
3454 }
3455
3467 if (symmetryBuilder_ != null) {
3468 return symmetryBuilder_.getMessageOrBuilder();
3469 } else {
3470 return symmetry_ == null ?
3471 com.google.ortools.sat.SymmetryProto.getDefaultInstance() : symmetry_;
3472 }
3473 }
3474
3485 private com.google.protobuf.SingleFieldBuilder<
3486 com.google.ortools.sat.SymmetryProto, com.google.ortools.sat.SymmetryProto.Builder, com.google.ortools.sat.SymmetryProtoOrBuilder>
3487 getSymmetryFieldBuilder() {
3488 if (symmetryBuilder_ == null) {
3489 symmetryBuilder_ = new com.google.protobuf.SingleFieldBuilder<
3490 com.google.ortools.sat.SymmetryProto, com.google.ortools.sat.SymmetryProto.Builder, com.google.ortools.sat.SymmetryProtoOrBuilder>(
3491 getSymmetry(),
3492 getParentForChildren(),
3493 isClean());
3494 symmetry_ = null;
3495 }
3496 return symmetryBuilder_;
3497 }
3498
3499 // @@protoc_insertion_point(builder_scope:operations_research.sat.CpModelProto)
3500 }
3501
3502 // @@protoc_insertion_point(class_scope:operations_research.sat.CpModelProto)
3503 private static final com.google.ortools.sat.CpModelProto DEFAULT_INSTANCE;
3504 static {
3505 DEFAULT_INSTANCE = new com.google.ortools.sat.CpModelProto();
3506 }
3507
3509 return DEFAULT_INSTANCE;
3510 }
3511
3512 private static final com.google.protobuf.Parser<CpModelProto>
3513 PARSER = new com.google.protobuf.AbstractParser<CpModelProto>() {
3514 @java.lang.Override
3515 public CpModelProto parsePartialFrom(
3516 com.google.protobuf.CodedInputStream input,
3517 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
3518 throws com.google.protobuf.InvalidProtocolBufferException {
3519 Builder builder = newBuilder();
3520 try {
3521 builder.mergeFrom(input, extensionRegistry);
3522 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
3523 throw e.setUnfinishedMessage(builder.buildPartial());
3524 } catch (com.google.protobuf.UninitializedMessageException e) {
3525 throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
3526 } catch (java.io.IOException e) {
3527 throw new com.google.protobuf.InvalidProtocolBufferException(e)
3528 .setUnfinishedMessage(builder.buildPartial());
3529 }
3530 return builder.buildPartial();
3531 }
3532 };
3533
3534 public static com.google.protobuf.Parser<CpModelProto> parser() {
3535 return PARSER;
3536 }
3537
3538 @java.lang.Override
3539 public com.google.protobuf.Parser<CpModelProto> getParserForType() {
3540 return PARSER;
3541 }
3542
3543 @java.lang.Override
3545 return DEFAULT_INSTANCE;
3546 }
3547
3548}
3549
Builder setVariables(int index, com.google.ortools.sat.IntegerVariableProto value)
static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
Builder addVariables(int index, com.google.ortools.sat.IntegerVariableProto.Builder builderForValue)
com.google.ortools.sat.FloatObjectiveProto getFloatingPointObjective()
com.google.ortools.sat.ConstraintProto.Builder addConstraintsBuilder(int index)
com.google.ortools.sat.SymmetryProto.Builder getSymmetryBuilder()
com.google.ortools.sat.DecisionStrategyProtoOrBuilder getSearchStrategyOrBuilder(int index)
java.util.List<? extends com.google.ortools.sat.IntegerVariableProtoOrBuilder > getVariablesOrBuilderList()
com.google.ortools.sat.CpObjectiveProto getObjective()
com.google.ortools.sat.SymmetryProto getSymmetry()
java.util.List< com.google.ortools.sat.DecisionStrategyProto > getSearchStrategyList()
Builder addVariables(int index, com.google.ortools.sat.IntegerVariableProto value)
Builder setObjective(com.google.ortools.sat.CpObjectiveProto.Builder builderForValue)
com.google.ortools.sat.IntegerVariableProto getVariables(int index)
java.util.List<? extends com.google.ortools.sat.ConstraintProtoOrBuilder > getConstraintsOrBuilderList()
com.google.ortools.sat.PartialVariableAssignment.Builder getSolutionHintBuilder()
com.google.ortools.sat.DecisionStrategyProto getSearchStrategy(int index)
com.google.ortools.sat.ConstraintProto.Builder getConstraintsBuilder(int index)
Builder setSymmetry(com.google.ortools.sat.SymmetryProto value)
com.google.ortools.sat.CpModelProto getDefaultInstanceForType()
com.google.ortools.sat.ConstraintProto.Builder addConstraintsBuilder()
Builder addConstraints(int index, com.google.ortools.sat.ConstraintProto.Builder builderForValue)
com.google.ortools.sat.ConstraintProtoOrBuilder getConstraintsOrBuilder(int index)
java.util.List< com.google.ortools.sat.ConstraintProto.Builder > getConstraintsBuilderList()
Builder addAllConstraints(java.lang.Iterable<? extends com.google.ortools.sat.ConstraintProto > values)
com.google.ortools.sat.PartialVariableAssignment getSolutionHint()
com.google.ortools.sat.CpModelProto build()
Builder setName(java.lang.String value)
java.util.List< java.lang.Integer > getAssumptionsList()
com.google.ortools.sat.IntegerVariableProto.Builder addVariablesBuilder(int index)
com.google.ortools.sat.IntegerVariableProto.Builder getVariablesBuilder(int index)
com.google.ortools.sat.CpModelProto buildPartial()
com.google.ortools.sat.PartialVariableAssignmentOrBuilder getSolutionHintOrBuilder()
Builder setVariables(int index, com.google.ortools.sat.IntegerVariableProto.Builder builderForValue)
Builder addSearchStrategy(com.google.ortools.sat.DecisionStrategyProto value)
Builder setSearchStrategy(int index, com.google.ortools.sat.DecisionStrategyProto value)
com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
Builder setConstraints(int index, com.google.ortools.sat.ConstraintProto.Builder builderForValue)
com.google.ortools.sat.DecisionStrategyProto.Builder addSearchStrategyBuilder(int index)
Builder addAllSearchStrategy(java.lang.Iterable<? extends com.google.ortools.sat.DecisionStrategyProto > values)
com.google.ortools.sat.IntegerVariableProtoOrBuilder getVariablesOrBuilder(int index)
Builder setSolutionHint(com.google.ortools.sat.PartialVariableAssignment value)
Builder setObjective(com.google.ortools.sat.CpObjectiveProto value)
com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
Builder setFloatingPointObjective(com.google.ortools.sat.FloatObjectiveProto.Builder builderForValue)
java.util.List< com.google.ortools.sat.IntegerVariableProto.Builder > getVariablesBuilderList()
Builder setFloatingPointObjective(com.google.ortools.sat.FloatObjectiveProto value)
com.google.ortools.sat.DecisionStrategyProto.Builder addSearchStrategyBuilder()
Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Builder addAllAssumptions(java.lang.Iterable<? extends java.lang.Integer > values)
Builder addConstraints(com.google.ortools.sat.ConstraintProto.Builder builderForValue)
com.google.ortools.sat.FloatObjectiveProto.Builder getFloatingPointObjectiveBuilder()
Builder mergeFloatingPointObjective(com.google.ortools.sat.FloatObjectiveProto value)
java.util.List< com.google.ortools.sat.DecisionStrategyProto.Builder > getSearchStrategyBuilderList()
Builder setSymmetry(com.google.ortools.sat.SymmetryProto.Builder builderForValue)
com.google.ortools.sat.FloatObjectiveProtoOrBuilder getFloatingPointObjectiveOrBuilder()
Builder addAllVariables(java.lang.Iterable<? extends com.google.ortools.sat.IntegerVariableProto > values)
Builder setConstraints(int index, com.google.ortools.sat.ConstraintProto value)
Builder setNameBytes(com.google.protobuf.ByteString value)
com.google.protobuf.ByteString getNameBytes()
Builder mergeFrom(com.google.ortools.sat.CpModelProto other)
Builder setAssumptions(int index, int value)
Builder mergeSolutionHint(com.google.ortools.sat.PartialVariableAssignment value)
Builder addVariables(com.google.ortools.sat.IntegerVariableProto value)
Builder setSearchStrategy(int index, com.google.ortools.sat.DecisionStrategyProto.Builder builderForValue)
java.util.List<? extends com.google.ortools.sat.DecisionStrategyProtoOrBuilder > getSearchStrategyOrBuilderList()
Builder addConstraints(com.google.ortools.sat.ConstraintProto value)
Builder addSearchStrategy(int index, com.google.ortools.sat.DecisionStrategyProto.Builder builderForValue)
Builder addConstraints(int index, com.google.ortools.sat.ConstraintProto value)
Builder mergeObjective(com.google.ortools.sat.CpObjectiveProto value)
com.google.ortools.sat.CpObjectiveProto.Builder getObjectiveBuilder()
com.google.ortools.sat.IntegerVariableProto.Builder addVariablesBuilder()
java.util.List< com.google.ortools.sat.IntegerVariableProto > getVariablesList()
Builder addVariables(com.google.ortools.sat.IntegerVariableProto.Builder builderForValue)
com.google.ortools.sat.SymmetryProtoOrBuilder getSymmetryOrBuilder()
com.google.ortools.sat.DecisionStrategyProto.Builder getSearchStrategyBuilder(int index)
Builder mergeSymmetry(com.google.ortools.sat.SymmetryProto value)
com.google.ortools.sat.CpObjectiveProtoOrBuilder getObjectiveOrBuilder()
Builder addSearchStrategy(int index, com.google.ortools.sat.DecisionStrategyProto value)
com.google.ortools.sat.ConstraintProto getConstraints(int index)
Builder addSearchStrategy(com.google.ortools.sat.DecisionStrategyProto.Builder builderForValue)
Builder mergeFrom(com.google.protobuf.Message other)
Builder setSolutionHint(com.google.ortools.sat.PartialVariableAssignment.Builder builderForValue)
java.util.List< com.google.ortools.sat.ConstraintProto > getConstraintsList()
com.google.ortools.sat.SymmetryProto getSymmetry()
java.util.List< com.google.ortools.sat.DecisionStrategyProto > getSearchStrategyList()
static com.google.ortools.sat.CpModelProto getDefaultInstance()
java.util.List<? extends com.google.ortools.sat.DecisionStrategyProtoOrBuilder > getSearchStrategyOrBuilderList()
com.google.protobuf.ByteString getNameBytes()
com.google.ortools.sat.FloatObjectiveProtoOrBuilder getFloatingPointObjectiveOrBuilder()
static com.google.ortools.sat.CpModelProto parseFrom(com.google.protobuf.CodedInputStream input)
com.google.ortools.sat.ConstraintProtoOrBuilder getConstraintsOrBuilder(int index)
static com.google.protobuf.Parser< CpModelProto > parser()
static com.google.ortools.sat.CpModelProto parseDelimitedFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.sat.CpModelProto parseFrom(java.nio.ByteBuffer data)
com.google.ortools.sat.CpObjectiveProto getObjective()
com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
static com.google.ortools.sat.CpModelProto parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
com.google.ortools.sat.CpModelProto getDefaultInstanceForType()
static com.google.ortools.sat.CpModelProto parseDelimitedFrom(java.io.InputStream input)
com.google.ortools.sat.ConstraintProto getConstraints(int index)
com.google.ortools.sat.PartialVariableAssignmentOrBuilder getSolutionHintOrBuilder()
java.util.List< java.lang.Integer > getAssumptionsList()
java.util.List<? extends com.google.ortools.sat.IntegerVariableProtoOrBuilder > getVariablesOrBuilderList()
com.google.ortools.sat.DecisionStrategyProtoOrBuilder getSearchStrategyOrBuilder(int index)
static com.google.ortools.sat.CpModelProto parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.sat.CpModelProto parseFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static final int FLOATING_POINT_OBJECTIVE_FIELD_NUMBER
java.util.List< com.google.ortools.sat.IntegerVariableProto > getVariablesList()
static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
com.google.ortools.sat.IntegerVariableProto getVariables(int index)
java.util.List< com.google.ortools.sat.ConstraintProto > getConstraintsList()
static com.google.ortools.sat.CpModelProto parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
com.google.protobuf.Parser< CpModelProto > getParserForType()
com.google.ortools.sat.SymmetryProtoOrBuilder getSymmetryOrBuilder()
boolean equals(final java.lang.Object obj)
static com.google.ortools.sat.CpModelProto parseFrom(com.google.protobuf.ByteString data)
static Builder newBuilder(com.google.ortools.sat.CpModelProto prototype)
com.google.ortools.sat.CpObjectiveProtoOrBuilder getObjectiveOrBuilder()
com.google.ortools.sat.PartialVariableAssignment getSolutionHint()
com.google.ortools.sat.FloatObjectiveProto getFloatingPointObjective()
java.util.List<? extends com.google.ortools.sat.ConstraintProtoOrBuilder > getConstraintsOrBuilderList()
Builder newBuilderForType(com.google.protobuf.GeneratedMessage.BuilderParent parent)
com.google.ortools.sat.IntegerVariableProtoOrBuilder getVariablesOrBuilder(int index)
void writeTo(com.google.protobuf.CodedOutputStream output)
com.google.ortools.sat.DecisionStrategyProto getSearchStrategy(int index)
static com.google.ortools.sat.CpModelProto parseFrom(byte[] data)
static com.google.ortools.sat.CpModelProto parseFrom(java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.sat.CpModelProto parseFrom(java.io.InputStream input)