Z3
RealExpr.java
Go to the documentation of this file.
1
18package com.microsoft.z3;
19
23public class RealExpr extends ArithExpr<RealSort>
24{
28 RealExpr(Context ctx, long obj)
29 {
30 super(ctx, obj);
31 }
32}