Class/Object

at.logic.gapt.proofs.lksk

LabelledOccSequent

Related Docs: object LabelledOccSequent | package lksk

Permalink

case class LabelledOccSequent(l_antecedent: Seq[LabelledFormulaOccurrence], l_succedent: Seq[LabelledFormulaOccurrence]) extends OccSequent with Product with Serializable

Source
base.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LabelledOccSequent
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Sequent
  7. AnyRef
  8. Any
Implicitly
  1. by RichClause
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LabelledOccSequent(l_antecedent: Seq[LabelledFormulaOccurrence], l_succedent: Seq[LabelledFormulaOccurrence])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to any2stringadd[LabelledOccSequent] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: FormulaOccurrence](that: Sequent[B]): Sequent[B]

    Permalink
    Definition Classes
    Sequent
  5. def ++:[B >: FormulaOccurrence](es: GenTraversable[B]): Sequent[B]

    Permalink

    Adds a sequent of elements to the antecedent.

    Adds a sequent of elements to the antecedent. New elements are always outermost, i.e. on the very left.

    es

    A collection of elements of type B > A.

    returns

    The sequent with es added to the antecedent.

    Definition Classes
    Sequent
  6. def +:[B >: FormulaOccurrence](e: B): Sequent[B]

    Permalink

    Adds an element to the antecedent.

    Adds an element to the antecedent. New elements are always outermost, i.e. on the very left.

    e

    An element of type B > A

    returns

    The sequent with e added to the antecedent

    Definition Classes
    Sequent
  7. def ->[B](y: B): (LabelledOccSequent, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to ArrowAssoc[LabelledOccSequent] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. def :+[B >: FormulaOccurrence](e: B): Sequent[B]

    Permalink

    Adds an element to the succedent.

    Adds an element to the succedent. New elements are always outermost, i.e. on the very right.

    e

    An element of type B > A

    returns

    The sequent with e added to the succedent

    Definition Classes
    Sequent
  9. def :++[B >: FormulaOccurrence](es: GenTraversable[B]): Sequent[B]

    Permalink

    Adds a sequence of elements to the succedent.

    Adds a sequence of elements to the succedent. New elements are always outermost, i.e. on the very right.

    es

    A collection of elements of type B > A.

    returns

    The sequent with es added to the succedent.

    Definition Classes
    Sequent
  10. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. val antecedent: Seq[FormulaOccurrence]

    Permalink

    The first list.

    The first list.

    Definition Classes
    Sequent
  12. def apply(is: Seq[SequentIndex]): Seq[FormulaOccurrence]

    Permalink
    Definition Classes
    Sequent
  13. def apply(i: SequentIndex): FormulaOccurrence

    Permalink

    Returns the element at some SequentIndex.

    Returns the element at some SequentIndex.

    i

    A SequentIndex, i.e. Ant(k) or Suc(k)

    returns

    The k-th element of the antecedent or succedent, depending on the type of i.

    Definition Classes
    Sequent
  14. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  15. val clause: Clause[FormulaOccurrence]

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to RichClause[FormulaOccurrence] performed by method RichClause in at.logic.gapt.proofs.
    Definition Classes
    RichClause
  16. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. def collect[B](f: PartialFunction[FormulaOccurrence, B]): Sequent[B]

    Permalink
    Definition Classes
    Sequent
  18. def compose(that: LabelledOccSequent): LabelledOccSequent

    Permalink
  19. def contains[B](el: B, isSuc: Boolean): Boolean

    Permalink
    Definition Classes
    Sequent
  20. def contains[B](el: B): Boolean

    Permalink

    Returns true iff the sequent contains some element in either cedent.

    Returns true iff the sequent contains some element in either cedent.

    Definition Classes
    Sequent
  21. def delete(is: Seq[SequentIndex])(implicit dummyImplicit: DummyImplicit): Sequent[FormulaOccurrence]

    Permalink
    Definition Classes
    Sequent
  22. def delete(is: SequentIndex*): Sequent[FormulaOccurrence]

    Permalink
    Definition Classes
    Sequent
  23. def delete(i: SequentIndex): Sequent[FormulaOccurrence]

    Permalink
    Definition Classes
    Sequent
  24. def diff[B >: FormulaOccurrence](other: Sequent[B]): Sequent[FormulaOccurrence]

    Permalink

    Takes the multiset difference between two sequents, i.e.

    Takes the multiset difference between two sequents, i.e. each side separately.

    Definition Classes
    Sequent
  25. def distinct: Sequent[FormulaOccurrence]

    Permalink

    Removes duplicate formulas from both cedents.

    Removes duplicate formulas from both cedents.

    Definition Classes
    Sequent
  26. def elements: Seq[FormulaOccurrence]

    Permalink

    Sequence of elements of the sequent.

    Sequence of elements of the sequent.

    returns

    Antecedent concatenated with succedent.

    Definition Classes
    Sequent
  27. def ensuring(cond: (LabelledOccSequent) ⇒ Boolean, msg: ⇒ Any): LabelledOccSequent

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to Ensuring[LabelledOccSequent] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: (LabelledOccSequent) ⇒ Boolean): LabelledOccSequent

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to Ensuring[LabelledOccSequent] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean, msg: ⇒ Any): LabelledOccSequent

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to Ensuring[LabelledOccSequent] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean): LabelledOccSequent

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to Ensuring[LabelledOccSequent] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  32. def equals(other: Any): Boolean

    Permalink

    Equality treating each side of the sequent as list, i.e.

    Equality treating each side of the sequent as list, i.e. respecting order and multiplicity.

    Definition Classes
    Sequent → AnyRef → Any
  33. def exists(p: (FormulaOccurrence) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Sequent
  34. def filter(p: (FormulaOccurrence) ⇒ Boolean): Sequent[FormulaOccurrence]

    Permalink

    The sub-sequent of elements satisfying some predicate.

    The sub-sequent of elements satisfying some predicate.

    p

    A function of type A => Boolean.

    returns

    The sequent consisting of only those elements satisfying p.

    Definition Classes
    Sequent
  35. def filterNot(p: (FormulaOccurrence) ⇒ Boolean): Sequent[FormulaOccurrence]

    Permalink

    The sub-sequent of elements not satisfying some predicate.

    The sub-sequent of elements not satisfying some predicate.

    p

    A function of type A => Boolean.

    returns

    The sequent consisting of only those elements not satisfying p.

    Definition Classes
    Sequent
  36. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  37. def find(pred: (FormulaOccurrence) ⇒ Boolean): Option[SequentIndex]

    Permalink
    Definition Classes
    Sequent
  38. def flatMap[B](f: (FormulaOccurrence) ⇒ TraversableOnce[B], g: (FormulaOccurrence) ⇒ TraversableOnce[B]): Sequent[B]

    Permalink
    Definition Classes
    Sequent
  39. def flatMap[B](f: (FormulaOccurrence) ⇒ TraversableOnce[B]): Sequent[B]

    Permalink
    Definition Classes
    Sequent
  40. def focus(i: SequentIndex): (FormulaOccurrence, Sequent[FormulaOccurrence])

    Permalink

    "Focuses on one element of the seuqent, i.e.

    "Focuses on one element of the seuqent, i.e. returns element at index and the rest of the sequent.

    i

    A SequentIndex.

    returns

    A pair consisting of this(i) and the rest of this.

    Definition Classes
    Sequent
  41. def forall(p: (FormulaOccurrence) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Sequent
  42. def foreach[U](f: (FormulaOccurrence) ⇒ U): Unit

    Permalink
    Definition Classes
    Sequent
  43. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to StringFormat[LabelledOccSequent] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  44. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  45. def groupBy[B](f: (FormulaOccurrence) ⇒ B): Sequent[(B, Seq[FormulaOccurrence])]

    Permalink
    Definition Classes
    Sequent
  46. def hashCode(): Int

    Permalink
    Definition Classes
    Sequent → AnyRef → Any
  47. def indexOf[B >: FormulaOccurrence](elem: B): SequentIndex

    Permalink
    Definition Classes
    Sequent
  48. def indexOfInAnt[B >: FormulaOccurrence](elem: B): SequentIndex

    Permalink
    Definition Classes
    Sequent
  49. def indexOfInSuc[B >: FormulaOccurrence](elem: B): SequentIndex

    Permalink
    Definition Classes
    Sequent
  50. def indexOfOption[B >: FormulaOccurrence](elem: B): Option[SequentIndex]

    Permalink
    Definition Classes
    Sequent
  51. def indexOfPol[B >: FormulaOccurrence](elem: B, inSuc: Boolean): SequentIndex

    Permalink
    Definition Classes
    Sequent
  52. def indices: Seq[SequentIndex]

    Permalink

    Returns the range of indices of the sequent as a sequence.

    Returns the range of indices of the sequent as a sequence.

    Definition Classes
    Sequent
  53. def indicesSequent: Sequent[SequentIndex]

    Permalink

    Returns the range of indices of the sequent as a sequent.

    Returns the range of indices of the sequent as a sequent.

    Definition Classes
    Sequent
  54. def indicesWhere(p: (FormulaOccurrence) ⇒ Boolean): Seq[SequentIndex]

    Permalink

    Returns the list of indices of elements satisfying some predicate.

    Returns the list of indices of elements satisfying some predicate.

    p

    A function of type A => Boolean.

    Definition Classes
    Sequent
  55. def insertAt[B >: FormulaOccurrence](i: SequentIndex, el: B): Sequent[B]

    Permalink
    Definition Classes
    Sequent
  56. def intersect[B >: FormulaOccurrence](other: Sequent[B]): Sequent[FormulaOccurrence]

    Permalink

    Computes the intersection of two sequents.

    Computes the intersection of two sequents.

    Definition Classes
    Sequent
  57. def isDefinedAt(i: SequentIndex): Boolean

    Permalink

    Tests whether the sequent is defined at the supplied SequentIndex.

    Tests whether the sequent is defined at the supplied SequentIndex.

    Definition Classes
    Sequent
  58. def isEmpty: Boolean

    Permalink

    Returns true iff both cedents are empty.

    Returns true iff both cedents are empty.

    Definition Classes
    Sequent
  59. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  60. def isSubMultisetOf[B >: FormulaOccurrence](other: Sequent[B]): Boolean

    Permalink
    Definition Classes
    Sequent
  61. def isSubsetOf[B >: FormulaOccurrence](other: Sequent[B]): Boolean

    Permalink

    other

    Another Sequent.

    returns

    True iff other contains this pair of sets.

    Definition Classes
    Sequent
  62. def isTaut: Boolean

    Permalink
    Definition Classes
    Sequent
  63. val l_antecedent: Seq[LabelledFormulaOccurrence]

    Permalink
  64. val l_succedent: Seq[LabelledFormulaOccurrence]

    Permalink
  65. def length: Int

    Permalink

    The number of elements in the sequent.

    The number of elements in the sequent.

    Definition Classes
    Sequent
  66. def lengths: (Int, Int)

    Permalink

    A pair consisting of the lengths of the cedents.

    A pair consisting of the lengths of the cedents.

    Definition Classes
    Sequent
  67. def map[B](f: (FormulaOccurrence) ⇒ B, g: (FormulaOccurrence) ⇒ B): Sequent[B]

    Permalink

    Maps two functions over the antecedent and succedent, respectively.

    Maps two functions over the antecedent and succedent, respectively.

    B

    The return type of f and g.

    f

    The function to map over the antecedent.

    g

    The function to map over the succedent.

    returns

    The sequent of type B that results from mapping f and g over the antecedent and succedent, respectively.

    Definition Classes
    Sequent
  68. def map[B](f: (FormulaOccurrence) ⇒ B): Sequent[B]

    Permalink

    Maps a function over both cedents

    Maps a function over both cedents

    B

    The return type of f

    f

    A function of type A => B

    returns

    The sequent of type B that results from mapping f over both cedents.

    Definition Classes
    Sequent
  69. def multiSetEquals[B](other: Sequent[B]): Boolean

    Permalink

    Equality treating each side of the sequent as a multiset.

    Equality treating each side of the sequent as a multiset.

    Definition Classes
    Sequent
  70. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  71. def negative: Seq[FormulaOccurrence]

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to RichClause[FormulaOccurrence] performed by method RichClause in at.logic.gapt.proofs.
    Definition Classes
    RichClause
  72. def nonEmpty: Boolean

    Permalink
    Definition Classes
    Sequent
  73. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  74. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  75. def polarizedElements: Seq[(FormulaOccurrence, Boolean)]

    Permalink

    Sequence of elements together with polarities of type Boolean signifying whether an element is in the antecedent or succedent.

    Sequence of elements together with polarities of type Boolean signifying whether an element is in the antecedent or succedent.

    Definition Classes
    Sequent
  76. def positive: Seq[FormulaOccurrence]

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to RichClause[FormulaOccurrence] performed by method RichClause in at.logic.gapt.proofs.
    Definition Classes
    RichClause
  77. def removeFromAntecedent[B](e: B): Sequent[FormulaOccurrence]

    Permalink
    Definition Classes
    Sequent
  78. def removeFromSuccedent[B](e: B): Sequent[FormulaOccurrence]

    Permalink
    Definition Classes
    Sequent
  79. def replaceAt[B >: FormulaOccurrence](i: SequentIndex, el: B): Sequent[B]

    Permalink
    Definition Classes
    Sequent
  80. def setEquals[B](other: Sequent[B]): Boolean

    Permalink

    Equality treating each side of the sequent as a set.

    Equality treating each side of the sequent as a set.

    Definition Classes
    Sequent
  81. def size: Int

    Permalink

    Synonym for length.

    Synonym for length.

    Definition Classes
    Sequent
  82. def sizes: (Int, Int)

    Permalink

    Synonym for lengths.

    Synonym for lengths.

    Definition Classes
    Sequent
  83. def sortBy[B](f: (FormulaOccurrence) ⇒ B)(implicit ord: Ordering[B]): Sequent[FormulaOccurrence]

    Permalink
    Definition Classes
    Sequent
  84. def sorted[B >: FormulaOccurrence](implicit ordering: Ordering[B]): Sequent[FormulaOccurrence]

    Permalink
    Definition Classes
    Sequent
  85. val succedent: Seq[FormulaOccurrence]

    Permalink

    The second list.

    The second list.

    Definition Classes
    Sequent
  86. def swapped: Sequent[FormulaOccurrence]

    Permalink
    Definition Classes
    Sequent
  87. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  88. def toString(): String

    Permalink
    Definition Classes
    LabelledOccSequentSequent → AnyRef → Any
  89. def toTuple: (Seq[FormulaOccurrence], Seq[FormulaOccurrence])

    Permalink

    returns

    The sequent in tuple form.

    Definition Classes
    Sequent
  90. def updated[B >: FormulaOccurrence](index: SequentIndex, elem: B): Sequent[B]

    Permalink
    Definition Classes
    Sequent
  91. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  92. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  93. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  94. def withFilter(p: (FormulaOccurrence) ⇒ Boolean): Sequent[FormulaOccurrence]

    Permalink
    Definition Classes
    Sequent
  95. def zip[B](that: Sequent[B]): Sequent[(FormulaOccurrence, B)]

    Permalink
    Definition Classes
    Sequent
  96. def zipWithIndex: Sequent[(FormulaOccurrence, SequentIndex)]

    Permalink
    Definition Classes
    Sequent
  97. def [B](y: B): (LabelledOccSequent, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from LabelledOccSequent to ArrowAssoc[LabelledOccSequent] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Sequent[FormulaOccurrence]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion RichClause from LabelledOccSequent to RichClause[FormulaOccurrence]

Inherited by implicit conversion any2stringadd from LabelledOccSequent to any2stringadd[LabelledOccSequent]

Inherited by implicit conversion StringFormat from LabelledOccSequent to StringFormat[LabelledOccSequent]

Inherited by implicit conversion Ensuring from LabelledOccSequent to Ensuring[LabelledOccSequent]

Inherited by implicit conversion ArrowAssoc from LabelledOccSequent to ArrowAssoc[LabelledOccSequent]

Ungrouped