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