Packages

case class TstpProofStats[T <: FileData](name: T, dagSize: BigInt, treeSize: BigInt, depth: Int, rule_histogram: Map[RuleName, Int], clause_frequency: Map[ClauseId, Int], reused_axioms: Map[RuleName, (String, Int)], reused_derived: Map[RuleName, (String, Int)], clause_sizes: Statistic[Int], clause_weights: Statistic[Int]) extends CommonProofStats[T] with Serializable with Product

Statistical data for a gapt.proofs.sketch.RefutationSketch sketch

T

a subtype of FileData that represents the location and metadata of a TSTP file

name

the name of the problem

dagSize

the same as sketch.dagSize

treeSize

the same as sketch.treeSize

depth

the same as sketch.depth

rule_histogram

map from a rule's name to how often the rule appears in the proof

clause_frequency

a map from the clause id to how often the clause appears

reused_axioms

the frequency of all leaf nodes that are used at least once

reused_derived

the frequency of all inner nodes that are used at least once

clause_sizes

statistics over the length of clauses in the proof

Annotations
@SerialVersionUID()
Source
common.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TstpProofStats
  2. Product
  3. Equals
  4. CommonProofStats
  5. CSVConvertible
  6. Serializable
  7. Serializable
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TstpProofStats(name: T, dagSize: BigInt, treeSize: BigInt, depth: Int, rule_histogram: Map[RuleName, Int], clause_frequency: Map[ClauseId, Int], reused_axioms: Map[RuleName, (String, Int)], reused_derived: Map[RuleName, (String, Int)], clause_sizes: Statistic[Int], clause_weights: Statistic[Int])

    name

    the name of the problem

    dagSize

    the same as sketch.dagSize

    treeSize

    the same as sketch.treeSize

    depth

    the same as sketch.depth

    rule_histogram

    map from a rule's name to how often the rule appears in the proof

    clause_frequency

    a map from the clause id to how often the clause appears

    reused_axioms

    the frequency of all leaf nodes that are used at least once

    reused_derived

    the frequency of all inner nodes that are used at least once

    clause_sizes

    statistics over the length of clauses in the proof

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from TstpProofStats[T] to any2stringadd[TstpProofStats[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (TstpProofStats[T], B)
    Implicit
    This member is added by an implicit conversion from TstpProofStats[T] to ArrowAssoc[TstpProofStats[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val clause_frequency: Map[ClauseId, Int]
    Definition Classes
    TstpProofStatsCommonProofStats
  8. val clause_sizes: Statistic[Int]
    Definition Classes
    TstpProofStatsCommonProofStats
  9. val clause_weights: Statistic[Int]
    Definition Classes
    TstpProofStatsCommonProofStats
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  11. def csvHeader(): CSVRow[String]

    Returns the csv header decribing the data

    Returns the csv header decribing the data

    Definition Classes
    TstpProofStatsCSVConvertible
  12. val dagSize: BigInt
    Definition Classes
    TstpProofStatsCommonProofStats
  13. def dagSizeByDepth(): BigDecimal

    Computes dagSize / depth

    Computes dagSize / depth

    Definition Classes
    CommonProofStats
  14. val depth: Int
    Definition Classes
    TstpProofStatsCommonProofStats
  15. def derived_statistics(): Option[Statistic[Int]]

    Computes statistics how often derived axioms are reused

    Computes statistics how often derived axioms are reused

    Definition Classes
    CommonProofStats
  16. def ensuring(cond: (TstpProofStats[T]) ⇒ Boolean, msg: ⇒ Any): TstpProofStats[T]
    Implicit
    This member is added by an implicit conversion from TstpProofStats[T] to Ensuring[TstpProofStats[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: (TstpProofStats[T]) ⇒ Boolean): TstpProofStats[T]
    Implicit
    This member is added by an implicit conversion from TstpProofStats[T] to Ensuring[TstpProofStats[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean, msg: ⇒ Any): TstpProofStats[T]
    Implicit
    This member is added by an implicit conversion from TstpProofStats[T] to Ensuring[TstpProofStats[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean): TstpProofStats[T]
    Implicit
    This member is added by an implicit conversion from TstpProofStats[T] to Ensuring[TstpProofStats[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from TstpProofStats[T] to StringFormat[TstpProofStats[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. val name: T
    Definition Classes
    TstpProofStatsCommonProofStats
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. val reused_axioms: Map[RuleName, (String, Int)]
    Definition Classes
    TstpProofStatsCommonProofStats
  29. val reused_derived: Map[RuleName, (String, Int)]
    Definition Classes
    TstpProofStatsCommonProofStats
  30. def reused_statistics(): Option[Statistic[Int]]

    Computes statistics how often axioms are reused

    Computes statistics how often axioms are reused

    Definition Classes
    CommonProofStats
  31. val rule_histogram: Map[RuleName, Int]
    Definition Classes
    TstpProofStatsCommonProofStats
  32. def sizeRatio(): BigDecimal

    Computes treeSize / dagSize

    Computes treeSize / dagSize

    Definition Classes
    CommonProofStats
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. def toCSV(): CSVRow[String]

    Converts the data to a CSV row

    Converts the data to a CSV row

    Definition Classes
    TstpProofStatsCSVConvertible
  35. val treeSize: BigInt
    Definition Classes
    TstpProofStatsCommonProofStats
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def [B](y: B): (TstpProofStats[T], B)
    Implicit
    This member is added by an implicit conversion from TstpProofStats[T] to ArrowAssoc[TstpProofStats[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Product

Inherited from Equals

Inherited from CommonProofStats[T]

Inherited from CSVConvertible[String]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from TstpProofStats[T] to any2stringadd[TstpProofStats[T]]

Inherited by implicit conversion StringFormat from TstpProofStats[T] to StringFormat[TstpProofStats[T]]

Inherited by implicit conversion Ensuring from TstpProofStats[T] to Ensuring[TstpProofStats[T]]

Inherited by implicit conversion ArrowAssoc from TstpProofStats[T] to ArrowAssoc[TstpProofStats[T]]

Ungrouped