case class TptpInputStats[T <: FileData](name: T, axiom_count: Int, input_formula_count: Int, signature_size: Int, constants: Int, unary_funs: Int, binary_funs: Int, contains_equality: Boolean, arity_statistics: Option[Statistic[Int]]) extends CSVConvertible[String] with Product with Serializable
Captures data from a TPTP problem file
- name
the file the data comes from
- axiom_count
the number of axioms in the problem (including included files)
- input_formula_count
the number statements asserting an imput formula
- signature_size
the total number of different constants and function symbols
- constants
the number of constants in the problem
- unary_funs
the number of unary functions in the problem
- binary_funs
the number of binary functions in the problem
- arity_statistics
statistical data about the arities of function symbols (may be empty e.g. for ∀xEy.x=y)
- Annotations
- @SerialVersionUID()
- Source
- common.scala
- Alphabetic
- By Inheritance
- TptpInputStats
- Serializable
- Product
- Equals
- CSVConvertible
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new TptpInputStats(name: T, axiom_count: Int, input_formula_count: Int, signature_size: Int, constants: Int, unary_funs: Int, binary_funs: Int, contains_equality: Boolean, arity_statistics: Option[Statistic[Int]])
- name
the file the data comes from
- axiom_count
the number of axioms in the problem (including included files)
- input_formula_count
the number statements asserting an imput formula
- signature_size
the total number of different constants and function symbols
- constants
the number of constants in the problem
- unary_funs
the number of unary functions in the problem
- binary_funs
the number of binary functions in the problem
- arity_statistics
statistical data about the arities of function symbols (may be empty e.g. for ∀xEy.x=y)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from TptpInputStats[T] toany2stringadd[TptpInputStats[T]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
- def ->[B](y: B): (TptpInputStats[T], B)
- Implicit
- This member is added by an implicit conversion from TptpInputStats[T] toArrowAssoc[TptpInputStats[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val arity_statistics: Option[Statistic[Int]]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val axiom_count: Int
- val binary_funs: Int
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- val constants: Int
- val contains_equality: Boolean
- def csvHeader(): CSVRow[String]
Returns the csv header decribing the data
Returns the csv header decribing the data
- Definition Classes
- TptpInputStats → CSVConvertible
- def ensuring(cond: (TptpInputStats[T]) => Boolean, msg: => Any): TptpInputStats[T]
- Implicit
- This member is added by an implicit conversion from TptpInputStats[T] toEnsuring[TptpInputStats[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: (TptpInputStats[T]) => Boolean): TptpInputStats[T]
- Implicit
- This member is added by an implicit conversion from TptpInputStats[T] toEnsuring[TptpInputStats[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean, msg: => Any): TptpInputStats[T]
- Implicit
- This member is added by an implicit conversion from TptpInputStats[T] toEnsuring[TptpInputStats[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean): TptpInputStats[T]
- Implicit
- This member is added by an implicit conversion from TptpInputStats[T] toEnsuring[TptpInputStats[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from TptpInputStats[T] toStringFormat[TptpInputStats[T]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- val input_formula_count: Int
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val name: T
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val signature_size: Int
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toCSV(): CSVRow[String]
Converts the data to a CSV row
Converts the data to a CSV row
- Definition Classes
- TptpInputStats → CSVConvertible
- val unary_funs: Int
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
- Deprecated
(Since version ) see corresponding Javadoc for more information.
- def →[B](y: B): (TptpInputStats[T], B)
- Implicit
- This member is added by an implicit conversion from TptpInputStats[T] toArrowAssoc[TptpInputStats[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.
This is the API documentation for GAPT.
The main package is gapt.