Z3
FPExpr.java
Go to the documentation of this file.
1 /*++
2 Copyright (c) 2013 Microsoft Corporation
3 
4 Module Name:
5 
6  FPExpr.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 FPExpr extends Expr
23 {
28  public int getEBits() { return ((FPSort)getSort()).getEBits(); }
29 
34  public int getSBits() { return ((FPSort)getSort()).getSBits(); }
35 
36  public FPExpr(Context ctx, long obj)
37  {
38  super(ctx, obj);
39  }
40 
41 }
FPExpr(Context ctx, long obj)
Definition: FPExpr.java:36