Package com.microsoft.z3
Class Statistics.Entry
- java.lang.Object
-
- com.microsoft.z3.Statistics.Entry
-
- Enclosing class:
- Statistics
public class Statistics.Entry extends Object
Statistical data is organized into pairs of [Key, Entry], where every Entry is either aDoubleEntryor aUIntEntry
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetDoubleValue()The double-value of the entry.intgetUIntValue()The uint-value of the entry.StringgetValueString()The string representation of the entry's value.booleanisDouble()True if the entry is double-valued.booleanisUInt()True if the entry is uint-valued.StringtoString()The string representation of the Entry.
-
-
-
Field Detail
-
Key
public String Key
The key of the entry.
-
-
Method Detail
-
getUIntValue
public int getUIntValue()
The uint-value of the entry.
-
getDoubleValue
public double getDoubleValue()
The double-value of the entry.
-
isUInt
public boolean isUInt()
True if the entry is uint-valued.
-
isDouble
public boolean isDouble()
True if the entry is double-valued.
-
getValueString
public String getValueString()
The string representation of the entry's value.- Throws:
Z3Exception
-
-