case class RToken(rule: String, name: Option[LambdaAST], antecedent: List[LambdaAST], succedent: List[LambdaAST], sub: List[(Var, LambdaAST)]) extends Token with Product with Serializable
A RToken represents a rule application.
- rule
One out of "AX", "ALLL", "ALLR", "EXL", "EXR", "ANDL", "ANDR", "ORL", "ORR", "IMPL", "IMPR", "NEGL", "NEGR", "CUT", "EQL", "EQR", "WEAKL", "WEAKR", "CONTRL", "CONTRR", "DEF", "BETA", "INSTAXIOM"
- name
quantifier rules allow optional specification of the subsitution term, definitions and axiom instantiations take the referenced declaration, etc.
- antecedent
the antecedent of the declaration sequent (not yet typechecked)
- succedent
the antecedent of the declaration sequent (not yet typechecked)
- sub
some rules like axiom instantiation specify substitutions, which are passed as list of var-term pairs
- Source
- LLKProofParser.scala
- Alphabetic
- By Inheritance
- RToken
- Serializable
- Serializable
- Product
- Equals
- Token
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
RToken(rule: String, name: Option[LambdaAST], antecedent: List[LambdaAST], succedent: List[LambdaAST], sub: List[(Var, LambdaAST)])
- rule
One out of "AX", "ALLL", "ALLR", "EXL", "EXR", "ANDL", "ANDR", "ORL", "ORR", "IMPL", "IMPR", "NEGL", "NEGR", "CUT", "EQL", "EQR", "WEAKL", "WEAKR", "CONTRL", "CONTRR", "DEF", "BETA", "INSTAXIOM"
- name
quantifier rules allow optional specification of the subsitution term, definitions and axiom instantiations take the referenced declaration, etc.
- antecedent
the antecedent of the declaration sequent (not yet typechecked)
- succedent
the antecedent of the declaration sequent (not yet typechecked)
- sub
some rules like axiom instantiation specify substitutions, which are passed as list of var-term pairs
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (RToken, B)
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val antecedent: List[LambdaAST]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def ensuring(cond: (RToken) ⇒ Boolean, msg: ⇒ Any): RToken
- def ensuring(cond: (RToken) ⇒ Boolean): RToken
- def ensuring(cond: Boolean, msg: ⇒ Any): RToken
- def ensuring(cond: Boolean): RToken
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val name: Option[LambdaAST]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val rule: String
- val sub: List[(Var, LambdaAST)]
- val succedent: List[LambdaAST]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def →[B](y: B): (RToken, B)
This is the API documentation for GAPT.
The main package is gapt.