Z3
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
BoolExpr.java
Go to the documentation of this file.
1 
18 package com.microsoft.z3;
19 
23 public class BoolExpr extends Expr {
24 
30  BoolExpr(Context ctx, long obj)
31  {
32  super(ctx, obj);
33  }
34 }