Package com.microsoft.z3
Class Statistics.Entry
java.lang.Object
com.microsoft.z3.Statistics.Entry
- Enclosing class:
- Statistics
Statistical data is organized into pairs of [Key, Entry], where every
Entry is either a
DoubleEntry or a UIntEntry-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiondoubleThe double-value of the entry.intThe uint-value of the entry.The string representation of the entry's value.booleanisDouble()True if the entry is double-valued.booleanisUInt()True if the entry is uint-valued.toString()The string representation of the Entry.
-
Field Details
-
Key
The key of the entry.
-
-
Method Details
-
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
The string representation of the entry's value.- Throws:
Z3Exception
-
toString
The string representation of the Entry.
-