3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00

fix maximize name in C++ API

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-04-22 14:48:05 +02:00
parent beaa50e0d8
commit d118f07e37
2 changed files with 3 additions and 1 deletions

View file

@ -972,6 +972,8 @@ void substitute_example() {
std::cout << new_f << std::endl;
}
int main() {
try {
demorgan(); std::cout << "\n";

View file

@ -1505,7 +1505,7 @@ namespace z3 {
assert(e.is_bool());
return handle(Z3_optimize_assert_soft(ctx(), m_opt, e, weight, 0));
}
handle maximzie(expr const& e) {
handle maximize(expr const& e) {
return handle(Z3_optimize_maximize(ctx(), m_opt, e));
}
handle minimize(expr const& e) {