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