Z3
FPRMExpr.java
Go to the documentation of this file.
1/*++
2Copyright (c) 2013 Microsoft Corporation
3
4Module Name:
5
6 FPRMExpr.java
7
8Abstract:
9
10Author:
11
12 Christoph Wintersteiger (cwinter) 2013-06-10
13
14Notes:
15
16--*/
17package com.microsoft.z3;
18
22public class FPRMExpr extends Expr<FPRMSort>
23{
24 public FPRMExpr(Context ctx, long obj)
25 {
26 super(ctx, obj);
27 }
28
29}
FPRMExpr(Context ctx, long obj)
Definition: FPRMExpr.java:24