mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
42 lines
538 B
Java
42 lines
538 B
Java
/**
|
|
Copyright (c) 2012-2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
BoolExpr.java
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
@author Christoph Wintersteiger (cwinter) 2012-03-15
|
|
|
|
Notes:
|
|
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
/**
|
|
* Boolean expressions
|
|
**/
|
|
public class BoolExpr extends Expr
|
|
{
|
|
/**
|
|
* Constructor for BoolExpr </summary>
|
|
**/
|
|
protected BoolExpr(Context ctx)
|
|
{
|
|
super(ctx);
|
|
}
|
|
|
|
/**
|
|
* Constructor for BoolExpr </summary>
|
|
* @throws Z3Exception
|
|
**/
|
|
BoolExpr(Context ctx, long obj) throws Z3Exception
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
}
|