Class Statistics

java.lang.Object
com.microsoft.z3.Z3Object
com.microsoft.z3.Statistics

public class Statistics extends Z3Object
Objects of this class track statistical information about solvers.
  • Method Details

    • toString

      public String toString()
      A string representation of the statistical data.
      Overrides:
      toString in class Object
    • size

      public int size()
      The number of statistical data.
    • getEntries

      public Statistics.Entry[] getEntries()
      The data entries.
      Throws:
      Z3Exception
    • getKeys

      public String[] getKeys()
      The statistical counters.
    • get

      public Statistics.Entry get(String key)
      The value of a particular statistical counter. Remarks: Returns null if the key is unknown.
      Throws:
      Z3Exception