Z3
BoolExpr.java
Go to the documentation of this file.
1 
18 package com.microsoft.z3;
19 
23 public class BoolExpr extends Expr
24 {
28  protected BoolExpr(Context ctx)
29  {
30  super(ctx);
31  }
32 
37  BoolExpr(Context ctx, long obj) throws Z3Exception
38  {
39  super(ctx, obj);
40  }
41 }