@@ -167,6 +167,66 @@ public boolean isAuxiliaryVariablesInModels() {
167
167
return this .auxiliaryVariablesInModels ;
168
168
}
169
169
170
+ public double getVarDecay () {
171
+ return this .varDecay ;
172
+ }
173
+
174
+ public double getVarInc () {
175
+ return this .varInc ;
176
+ }
177
+
178
+ public ClauseMinimization getClauseMin () {
179
+ return this .clauseMin ;
180
+ }
181
+
182
+ public int getRestartFirst () {
183
+ return this .restartFirst ;
184
+ }
185
+
186
+ public double getRestartInc () {
187
+ return this .restartInc ;
188
+ }
189
+
190
+ public double getClauseDecay () {
191
+ return this .clauseDecay ;
192
+ }
193
+
194
+ public boolean isRemoveSatisfied () {
195
+ return this .removeSatisfied ;
196
+ }
197
+
198
+ public double getLearntsizeFactor () {
199
+ return this .learntsizeFactor ;
200
+ }
201
+
202
+ public double getLearntsizeInc () {
203
+ return this .learntsizeInc ;
204
+ }
205
+
206
+ public boolean isIncremental () {
207
+ return this .incremental ;
208
+ }
209
+
210
+ public boolean isInitialPhase () {
211
+ return this .initialPhase ;
212
+ }
213
+
214
+ public boolean isProofGeneration () {
215
+ return this .proofGeneration ;
216
+ }
217
+
218
+ public boolean isBbInitialUBCheckForRotatableLiterals () {
219
+ return this .bbInitialUBCheckForRotatableLiterals ;
220
+ }
221
+
222
+ public boolean isBbCheckForComplementModelLiterals () {
223
+ return this .bbCheckForComplementModelLiterals ;
224
+ }
225
+
226
+ public boolean isBbCheckForRotatableLiterals () {
227
+ return this .bbCheckForRotatableLiterals ;
228
+ }
229
+
170
230
@ Override
171
231
public String toString () {
172
232
final StringBuilder sb = new StringBuilder ("MiniSatConfig{" ).append (System .lineSeparator ());
0 commit comments