mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
add basic example of using optimizaiton context to Java as raised in issue #179
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
0e886cfe5e
commit
a0894ac7bf
|
@ -2254,7 +2254,30 @@ class JavaExample
|
|||
|
||||
System.out.println("OK, model: " + s.getModel().toString());
|
||||
}
|
||||
|
||||
|
||||
public void optimizeExample(Context ctx)
|
||||
{
|
||||
System.out.println("Opt");
|
||||
|
||||
Optimize opt = ctx.mkOptimize();
|
||||
|
||||
// Set constraints.
|
||||
IntExpr xExp = ctx.mkIntConst("x");
|
||||
IntExpr yExp = ctx.mkIntConst("y");
|
||||
|
||||
opt.Add(ctx.mkEq(ctx.mkAdd(xExp, yExp), ctx.mkInt(10)),
|
||||
ctx.mkGe(xExp, ctx.mkInt(0)),
|
||||
ctx.mkGe(yExp, ctx.mkInt(0)));
|
||||
|
||||
// Set objectives.
|
||||
Optimize.Handle mx = opt.MkMaximize(xExp);
|
||||
Optimize.Handle my = opt.MkMaximize(yExp);
|
||||
|
||||
System.out.println(opt.Check());
|
||||
System.out.println(mx);
|
||||
System.out.println(my);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
JavaExample p = new JavaExample();
|
||||
|
@ -2274,6 +2297,8 @@ class JavaExample
|
|||
HashMap<String, String> cfg = new HashMap<String, String>();
|
||||
cfg.put("model", "true");
|
||||
Context ctx = new Context(cfg);
|
||||
|
||||
p.optimizeExample(ctx);
|
||||
p.basicTests(ctx);
|
||||
p.castingTest(ctx);
|
||||
p.sudokuExample(ctx);
|
||||
|
|
|
@ -109,6 +109,14 @@ public class Optimize extends Z3Object
|
|||
{
|
||||
return getLower();
|
||||
}
|
||||
|
||||
/**
|
||||
* Print a string representation of the handle.
|
||||
**/
|
||||
public String toString()
|
||||
{
|
||||
return getValue().toString();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue