-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathOptimizationIntReal.java
156 lines (131 loc) · 6.42 KB
/
OptimizationIntReal.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// This file is part of JavaSMT,
// an API wrapper for a collection of SMT solvers:
// https://github.com/sosy-lab/java-smt
//
// SPDX-FileCopyrightText: 2020 Dirk Beyer <https://www.sosy-lab.org>
//
// SPDX-License-Identifier: Unlicense OR Apache-2.0 OR MIT
package org.sosy_lab.java_smt.example;
import java.util.Optional;
import java.util.logging.Level;
import org.sosy_lab.common.ShutdownNotifier;
import org.sosy_lab.common.configuration.Configuration;
import org.sosy_lab.common.configuration.InvalidConfigurationException;
import org.sosy_lab.common.log.BasicLogManager;
import org.sosy_lab.common.log.LogManager;
import org.sosy_lab.common.rationals.Rational;
import org.sosy_lab.java_smt.SolverContextFactory;
import org.sosy_lab.java_smt.SolverContextFactory.Solvers;
import org.sosy_lab.java_smt.api.BooleanFormulaManager;
import org.sosy_lab.java_smt.api.IntegerFormulaManager;
import org.sosy_lab.java_smt.api.Model;
import org.sosy_lab.java_smt.api.NumeralFormula;
import org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula;
import org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula;
import org.sosy_lab.java_smt.api.OptimizationProverEnvironment;
import org.sosy_lab.java_smt.api.OptimizationProverEnvironment.OptStatus;
import org.sosy_lab.java_smt.api.RationalFormulaManager;
import org.sosy_lab.java_smt.api.SolverContext;
import org.sosy_lab.java_smt.api.SolverContext.ProverOptions;
import org.sosy_lab.java_smt.api.SolverException;
/**
* Example for optimizing 'x' with the constraint '0 <= x < 10'. We show the difference
* between optimizing in integer and rational logic.
*/
public final class OptimizationIntReal {
/** A correct value is determined in a region of size EPSILON around the real bound. */
private static final Rational EPSILON = Rational.ofString("1/1000");
private OptimizationIntReal() {
// never called
}
public static void main(String... args)
throws InvalidConfigurationException, SolverException, InterruptedException {
Configuration config = Configuration.defaultConfiguration();
LogManager logger = BasicLogManager.create(config);
ShutdownNotifier notifier = ShutdownNotifier.createDummy();
Solvers solver = Solvers.Z3; // Z3 works for optimization
optimizeWithIntegers(config, logger, notifier, solver);
optimizeWithRationals(config, logger, notifier, solver);
}
/** Solve the problem with integer logic. */
private static void optimizeWithIntegers(
Configuration config, LogManager logger, ShutdownNotifier notifier, Solvers solver)
throws InterruptedException, SolverException {
// create solver context
try (SolverContext context =
SolverContextFactory.createSolverContext(config, logger, notifier, solver);
OptimizationProverEnvironment prover =
context.newOptimizationProverEnvironment(ProverOptions.GENERATE_MODELS)) {
logger.log(Level.WARNING, "Using solver " + solver + " in version " + context.getVersion());
BooleanFormulaManager bmgr = context.getFormulaManager().getBooleanFormulaManager();
IntegerFormulaManager nmgr = context.getFormulaManager().getIntegerFormulaManager();
IntegerFormula x = nmgr.makeVariable("x");
// assert 0 <= x < 10
prover.addConstraint(
bmgr.and(
nmgr.greaterOrEquals(x, nmgr.makeNumber(0)), nmgr.lessThan(x, nmgr.makeNumber(10))));
logger.log(Level.INFO, "optimizing with integer logic");
printUpperAndLowerBound(prover, x, logger);
} catch (InvalidConfigurationException | UnsatisfiedLinkError e) {
// on some machines we support only some solvers,
// thus we can ignore these errors.
logger.logUserException(Level.INFO, e, "Solver " + solver + " is not available.");
} catch (UnsupportedOperationException e) {
logger.logUserException(Level.INFO, e, e.getMessage());
}
}
/** Solve the problem with rational logic. */
private static void optimizeWithRationals(
Configuration config, LogManager logger, ShutdownNotifier notifier, Solvers solver)
throws InterruptedException, SolverException {
// create solver context
try (SolverContext context =
SolverContextFactory.createSolverContext(config, logger, notifier, solver);
OptimizationProverEnvironment prover =
context.newOptimizationProverEnvironment(ProverOptions.GENERATE_MODELS)) {
BooleanFormulaManager bmgr = context.getFormulaManager().getBooleanFormulaManager();
RationalFormulaManager nmgr = context.getFormulaManager().getRationalFormulaManager();
RationalFormula x = nmgr.makeVariable("x");
prover.addConstraint(
bmgr.and(
nmgr.greaterOrEquals(x, nmgr.makeNumber(0)), nmgr.lessThan(x, nmgr.makeNumber(10))));
logger.log(Level.INFO, "optimizing with rational logic");
printUpperAndLowerBound(prover, x, logger);
} catch (InvalidConfigurationException | UnsatisfiedLinkError e) {
// on some machines we support only some solvers,
// thus we can ignore these errors.
logger.logUserException(Level.INFO, e, "Solver " + solver + " is not available.");
} catch (UnsupportedOperationException e) {
logger.logUserException(Level.INFO, e, e.getMessage());
}
}
/** computes the lower and upper bound for the symbol 'x' and prints possible models. */
private static void printUpperAndLowerBound(
OptimizationProverEnvironment prover, NumeralFormula x, LogManager logger)
throws InterruptedException, SolverException {
prover.push();
{ // minimize x and get a lower bound of x: x >= 0
// --> bound is 0
int handleX = prover.minimize(x);
OptStatus status = prover.check();
assert status == OptStatus.OPT;
Optional<Rational> lower = prover.lower(handleX, EPSILON);
try (Model model = prover.getModel()) {
logger.log(Level.INFO, "lower bound:", lower.orElseThrow(), "with model:", model.asList());
}
}
prover.pop();
prover.push();
{ // maximize x and get an upper bound of x: x < 10
// --> bound is (10 - EPSILON) for rational symbols and 9 for integer symbols.
int handleX = prover.maximize(x);
OptStatus status = prover.check();
assert status == OptStatus.OPT;
Optional<Rational> upper = prover.upper(handleX, EPSILON);
try (Model model = prover.getModel()) {
logger.log(Level.INFO, "upper bound:", upper.orElseThrow(), "with model:", model.asList());
}
}
prover.pop();
}
}