Z3
BoolExpr.cs
Go to the documentation of this file.
1 /*++
2 Copyright (<c>) 2012 Microsoft Corporation
3 
4 Module Name:
5 
6  BoolExpr.cs
7 
8 Abstract:
9 
10  Z3 Managed API: Boolean Expressions
11 
12 Author:
13 
14  Christoph Wintersteiger (cwinter) 2012-11-23
15 
16 Notes:
17 
18 --*/
19 using System;
20 using System.Collections.Generic;
21 using System.Linq;
22 using System.Text;
23 
24 using System.Diagnostics.Contracts;
25 
26 namespace Microsoft.Z3
27 {
31  public class BoolExpr : Expr
32  {
33  #region Internal
34  internal BoolExpr(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
36  #endregion
37  }
38 }
using System
Boolean expressions
Definition: BoolExpr.cs:31
Expressions are terms.
Definition: Expr.cs:29
The main interaction with Z3 happens via the Context.
Definition: Context.cs:31