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 
38  BoolExpr(Context ctx, long obj)
39  {
40  super(ctx, obj);
41  }
42 }