Z3
FPRMExpr.java
Go to the documentation of this file.
1 /*++
2 Copyright (c) 2013 Microsoft Corporation
3 
4 Module Name:
5 
6  FPRMExpr.java
7 
8 Abstract:
9 
10 Author:
11 
12  Christoph Wintersteiger (cwinter) 2013-06-10
13 
14 Notes:
15 
16 --*/
17 package com.microsoft.z3;
18 
22 public class FPRMExpr extends Expr
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