(Expr<?>[] fixed, Expr<?>[] lhs, Expr<?>[] rhs, Expr<?> conseq)
| 104 | } |
| 105 | |
| 106 | public final boolean consequence(Expr<?>[] fixed, Expr<?>[] lhs, Expr<?>[] rhs, Expr<?> conseq) { |
| 107 | return Native.propagateConsequence( |
| 108 | this, ctx.nCtx(), solver.getNativeObject(), javainfo, |
| 109 | fixed.length, AST.arrayToNative(fixed), lhs.length, AST.arrayToNative(lhs), AST.arrayToNative(rhs), conseq.getNativeObject()); |
| 110 | } |
| 111 | |
| 112 | public final boolean nextSplit(Expr<?> e, long idx, Z3_lbool phase) { |
| 113 | return Native.propagateNextSplit( |
no test coverage detected