3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-14 18:06:15 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-08-03 08:06:38 -07:00
parent 4431a534b3
commit 3147d2351d
2 changed files with 4 additions and 4 deletions

View file

@ -143,12 +143,12 @@ namespace Microsoft.Z3
/// <summary> /// <summary>
/// The body of the quantifier. /// The body of the quantifier.
/// </summary> /// </summary>
public BoolExpr Body public Expr Body
{ {
get get
{ {
return (BoolExpr)Expr.Create(Context, Native.Z3_get_quantifier_body(Context.nCtx, NativeObject)); return Expr.Create(Context, Native.Z3_get_quantifier_body(Context.nCtx, NativeObject));
} }
} }

View file

@ -139,9 +139,9 @@ public class Quantifier extends BoolExpr
* *
* @throws Z3Exception * @throws Z3Exception
**/ **/
public BoolExpr getBody() public Expr getBody()
{ {
return (BoolExpr) Expr.create(getContext(), Native.getQuantifierBody(getContext() return Expr.create(getContext(), Native.getQuantifierBody(getContext()
.nCtx(), getNativeObject())); .nCtx(), getNativeObject()));
} }