3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 20:18:18 +00:00

Tabs, formatting.

This commit is contained in:
Christoph M. Wintersteiger 2017-09-17 17:50:05 +01:00
parent 56e20da3ce
commit db398eca7a
26 changed files with 331 additions and 335 deletions

View file

@ -2070,7 +2070,7 @@ public class Context implements AutoCloseable {
*/ */
public ReExpr mkComplement(ReExpr re) public ReExpr mkComplement(ReExpr re)
{ {
checkContextMatch(re); checkContextMatchb(re);
return (ReExpr) Expr.create(this, Native.mkReComplement(nCtx(), re.getNativeObject())); return (ReExpr) Expr.create(this, Native.mkReComplement(nCtx(), re.getNativeObject()));
} }

View file

@ -285,8 +285,7 @@ public class Optimize extends Z3Object {
**/ **/
public String getReasonUnknown() public String getReasonUnknown()
{ {
return Native.optimizeGetReasonUnknown(getContext().nCtx(), return Native.optimizeGetReasonUnknown(getContext().nCtx(), getNativeObject());
getNativeObject());
} }
/** /**

View file

@ -36,11 +36,7 @@ public class Sort extends AST
Sort other = (Sort) o; Sort other = (Sort) o;
return (getContext().nCtx() == other.getContext().nCtx()) && return (getContext().nCtx() == other.getContext().nCtx()) &&
(Native.isEqSort( (Native.isEqSort(getContext().nCtx(), getNativeObject(), other.getNativeObject()));
getContext().nCtx(),
getNativeObject(),
other.getNativeObject()
));
} }
/** /**

View file

@ -160,7 +160,7 @@ def_module_params('fixedpoint',
('xform.coalesce_rules', BOOL, False, "coalesce rules"), ('xform.coalesce_rules', BOOL, False, "coalesce rules"),
('xform.tail_simplifier_pve', BOOL, True, "propagate_variable_equivalences"), ('xform.tail_simplifier_pve', BOOL, True, "propagate_variable_equivalences"),
('xform.subsumption_checker', BOOL, True, "Enable subsumption checker (no support for model conversion)"), ('xform.subsumption_checker', BOOL, True, "Enable subsumption checker (no support for model conversion)"),
('xform.coi', BOOL, True, "use cone of influence simplificaiton"), ('xform.coi', BOOL, True, "use cone of influence simplification"),
('duality.enable_restarts', BOOL, False, 'DUALITY: enable restarts'), ('duality.enable_restarts', BOOL, False, 'DUALITY: enable restarts'),
('spacer.order_children', UINT, 0, 'SPACER: order of enqueuing children in non-linear rules : 0 (original), 1 (reverse)'), ('spacer.order_children', UINT, 0, 'SPACER: order of enqueuing children in non-linear rules : 0 (original), 1 (reverse)'),
('spacer.eager_reach_check', BOOL, True, 'SPACER: eagerly check if a query is reachable using reachability facts of predecessors'), ('spacer.eager_reach_check', BOOL, True, 'SPACER: eagerly check if a query is reachable using reachability facts of predecessors'),

View file

@ -0,0 +1 @@
winte@WINTERMUTE.13536:1505663874