at.logic.skeptik.judgment.mutable

SetSequent

class SetSequent extends Sequent with SequentLike[SetSequent]

A class for mutable sequents whose cedents are mutable sets.

Example:
  1. // Make a SetSequent via the companion object factory
    val s = SetSequent()()
    
    // Add formula f to the succedent of sequent s
    val s += f
    
    // Add formula f to the antecedent of sequent s
    val f =+: s
Version

0.2

Since

0.2

Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SetSequent
  2. SequentLike
  3. Sequent
  4. SequentLike
  5. Judgment
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SetSequent(ant: Set[E], suc: Set[E])

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(f: E): SetSequent

    Definition Classes
    SetSequentSequentLike
  5. def +:(f: E): SetSequent

    Definition Classes
    SetSequentSequentLike
  6. def +=(f: E): SetSequent

    Adds a formula to the succedent of the sequent.

    Adds a formula to the succedent of the sequent.

    f

    the formula to be added.

    returns

    the sequent itself.

    Definition Classes
    SetSequentSequentLike
    Example:
    1. s += f

  7. def -(f: E): SetSequent

    Definition Classes
    SetSequentSequentLike
  8. def -:(f: E): SetSequent

    Definition Classes
    SetSequentSequentLike
  9. def -=(f: E): SetSequent

    Removes a formula from the succedent of the sequent.

    Removes a formula from the succedent of the sequent.

    f

    the formula to be removed.

    returns

    the sequent itself.

    Definition Classes
    SetSequentSequentLike
    Example:
    1. s += f

  10. def ->[B](y: B): (SetSequent, B)

    Implicit information
    This member is added by an implicit conversion from SetSequent to ArrowAssoc[SetSequent] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  11. def =+:(f: E): SetSequent

    Adds a formula to the antecedent of the sequent.

    Adds a formula to the antecedent of the sequent.

    f

    the formula to be added.

    returns

    the sequent itself.

    Definition Classes
    SetSequentSequentLike
    Example:
    1. s += f

  12. def =-:(f: E): SetSequent

    Removes a formula from the antecedent of the sequent.

    Removes a formula from the antecedent of the sequent.

    f

    the formula to be removed.

    returns

    the sequent itself.

    Definition Classes
    SetSequentSequentLike
    Example:
    1. s += f

  13. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  15. val ant: Set[E]

    Definition Classes
    SetSequentSequentLike
  16. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  17. def canEqual(other: Any): Boolean

    Definition Classes
    Sequent
  18. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  19. def diff(that: Sequent): SetSequent

    Definition Classes
    SetSequentSequentLike
  20. def ensuring(cond: (SetSequent) ⇒ Boolean, msg: ⇒ Any): SetSequent

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

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

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

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

    Definition Classes
    AnyRef
  25. def equals(v: Any): Boolean

    Definition Classes
    Sequent → AnyRef → Any
  26. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  27. def formatted(fmtstr: String): String

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

    Definition Classes
    AnyRef → Any
  29. def hashCode(): Int

    Definition Classes
    Sequent → AnyRef → Any
  30. def intersect(that: Sequent): SetSequent

    Definition Classes
    SetSequentSequentLike
  31. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  32. def isTautological: Boolean

    Definition Classes
    SequentLike
  33. def logicalSize: Int

    Definition Classes
    SequentLike
  34. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  35. final def notify(): Unit

    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  37. def size: Int

    Definition Classes
    SequentLike
  38. def subsequentOf(that: Sequent): Boolean

    Definition Classes
    SequentLike
  39. val suc: Set[E]

    Definition Classes
    SetSequentSequentLike
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  41. def toSeqSequent: SeqSequent

    Definition Classes
    Sequent
  42. def toSetSequent: immutable.SetSequent

    Definition Classes
    Sequent
  43. def toString(): String

    Definition Classes
    Sequent → AnyRef → Any
  44. def union(that: Sequent): SetSequent

    Definition Classes
    SetSequentSequentLike
  45. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  48. def [B](y: B): (SetSequent, B)

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

Shadowed Implict Value Members

  1. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from SetSequent to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (setSequent: StringAdd).+(other)
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from SetSequent to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (setSequent: StringAdd).self
    Definition Classes
    StringAdd
  3. val self: Any

    Implicit information
    This member is added by an implicit conversion from SetSequent to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (setSequent: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: SetSequent

    Implicit information
    This member is added by an implicit conversion from SetSequent to ArrowAssoc[SetSequent] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (setSequent: ArrowAssoc[SetSequent]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: SetSequent

    Implicit information
    This member is added by an implicit conversion from SetSequent to Ensuring[SetSequent] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (setSequent: Ensuring[SetSequent]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from SequentLike[SetSequent]

Inherited from Sequent

Inherited from Judgment

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from SetSequent to StringAdd

Inherited by implicit conversion any2stringfmt from SetSequent to StringFormat

Inherited by implicit conversion any2ArrowAssoc from SetSequent to ArrowAssoc[SetSequent]

Inherited by implicit conversion any2Ensuring from SetSequent to Ensuring[SetSequent]

Ungrouped