Object

at.logic.gapt.proofs.lk.cutIntroduction

CutIntroduction

Related Doc: package cutIntroduction

Permalink

object CutIntroduction extends Logger

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CutIntroduction
  2. Logger
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def buildProofWithCut(ehs: ExtendedHerbrandSequent, prover: Prover): Option[LKProof]

    Permalink

    Builds the final proof out of an extended Herbrand sequent.

    Builds the final proof out of an extended Herbrand sequent.

    For details, see p.5 of "Algorithmic Introduction of Quantified Cuts (Hetzl et al 2013)".

  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def compressLKProof(p: LKProof, method: GrammarFindingMethod = ..., verbose: Boolean = false): Option[LKProof]

    Permalink
  8. def compressToEHS(ep: ExpansionSequent, hasEquality: Boolean, method: GrammarFindingMethod, verbose: Boolean): Option[ExtendedHerbrandSequent]

    Permalink
  9. def compressToLK(ep: ExpansionSequent, hasEquality: Boolean, method: GrammarFindingMethod, verbose: Boolean): Option[LKProof]

    Permalink
  10. def computeCanonicalSolutions(g: MultiGrammar): List[FOLFormula]

    Permalink

    Computes the canonical solution with multiple quantifiers from a MultiGrammar, i.e.

    Computes the canonical solution with multiple quantifiers from a MultiGrammar, i.e. the list \forall x_1...x_n C_1, ...., \forall x_1 C_n.

  11. def constructLKProof(ehs: ExtendedHerbrandSequent, hasEquality: Boolean, verbose: Boolean = false): LKProof

    Permalink
  12. def debug(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def error(msg: ⇒ String, e: Throwable): Nothing

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  16. def error(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def genWeakQuantRules(f: FOLFormula, lst: Seq[Seq[FOLTerm]], ax: LKProof): LKProof

    Permalink
  19. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def info(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. val log: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  24. def loggerName: String

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  28. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  30. def trace(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  31. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def warn(msg: ⇒ String, e: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  35. def warn(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger

Deprecated Value Members

  1. def execute(ep: ExpansionSequent, hasEquality: Boolean, method: GrammarFindingMethod, verbose: Boolean): Option[LKProof]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2015-09-03) Use compressToLK instead

  2. def execute(proof: LKProof, method: GrammarFindingMethod, verbose: Boolean): Option[LKProof]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2015-09-03) Use compressLKProof instead

  3. def execute(proof: ExpansionSequent, hasEquality: Boolean, method: GrammarFindingMethod): Option[LKProof]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2015-09-03) Use compressToLK instead

  4. def execute(proof: LKProof, method: GrammarFindingMethod): Option[LKProof]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2015-09-03) Use compressLKProof instead

  5. def many_cuts_one_quantifier(es: ExpansionSequent, numcuts: Int, hasEquality: Boolean, verbose: Boolean): Option[LKProof]

    Permalink

    Tries to introduce many cuts with one quantifier each to the proof represented by the ExpansionSequent.

    Tries to introduce many cuts with one quantifier each to the proof represented by the ExpansionSequent.

    es

    The expansion sequent representing a proof for introducing a cut.

    numcuts

    The (maximum) number of cuts to be introduced

    hasEquality

    True if the proof represented by es is in a theory modulo equality, false otherwise.

    verbose

    Whether information about the cut-introduction process should be printed on screen.

    returns

    A list of cut-formulas.

    Annotations
    @deprecated
    Deprecated

    (Since version 2015-09-03) Use compressToLK instead

  6. def many_cuts_one_quantifier(proof: LKProof, numcuts: Int, verbose: Boolean): Option[LKProof]

    Permalink

    Tries to introduce many cuts with one quantifier each to the LKProof.

    Tries to introduce many cuts with one quantifier each to the LKProof.

    proof

    The proof for introducing a cut.

    numcuts

    The (maximum) number of cuts to be introduced

    verbose

    Whether information about the cut-introduction process should be printed on screen.

    returns

    A list of cut-formulas.

    Annotations
    @deprecated
    Deprecated

    (Since version 2015-09-03) Use compressLKProof instead

  7. def one_cut_many_quantifiers(es: ExpansionSequent, hasEquality: Boolean, verbose: Boolean): Option[LKProof]

    Permalink

    Tries to introduce one cut with as many quantifiers as possible to the proof represented by the ExpansionSequent.

    Tries to introduce one cut with as many quantifiers as possible to the proof represented by the ExpansionSequent.

    es

    The expansion sequent representing a proof for introducing a cut.

    hasEquality

    True if the proof represented by es is in a theory modulo equality, false otherwise.

    verbose

    Whether information about the cut-introduction process should be printed on screen.

    returns

    A proof with one quantified cut.

    Annotations
    @deprecated
    Deprecated

    (Since version 2015-09-03) Use compressToLK instead

  8. def one_cut_many_quantifiers(proof: LKProof, verbose: Boolean): Option[LKProof]

    Permalink

    Tries to introduce one cut with as many quantifiers as possible to the LKProof.

    Tries to introduce one cut with as many quantifiers as possible to the LKProof.

    proof

    The proof for introducing a cut.

    verbose

    Whether information about the cut-introduction process should be printed on screen.

    returns

    A proof with one quantified cut.

    Annotations
    @deprecated
    Deprecated

    (Since version 2015-09-03) Use compressLKProof instead

  9. def one_cut_one_quantifier(es: ExpansionSequent, hasEquality: Boolean, verbose: Boolean): Option[LKProof]

    Permalink

    Tries to introduce one cut with one quantifier to the proof represented by the ExpansionSequent.

    Tries to introduce one cut with one quantifier to the proof represented by the ExpansionSequent.

    es

    The expansion sequent representing a proof for introducing a cut.

    hasEquality

    True if the proof represented by es is in a theory modulo equality, false otherwise.

    verbose

    Whether information about the cut-introduction process should be printed on screen.

    returns

    A proof with one quantified cut.

    Annotations
    @deprecated
    Deprecated

    (Since version 2015-09-03) Use compressToLK instead

  10. def one_cut_one_quantifier(proof: LKProof, verbose: Boolean): Option[LKProof]

    Permalink

    Tries to introduce one cut with one quantifier to the LKProof.

    Tries to introduce one cut with one quantifier to the LKProof.

    proof

    The proof for introducing a cut.

    verbose

    Whether information about the cut-introduction process should be printed on screen.

    returns

    A proof with one quantified cut.

    Annotations
    @deprecated
    Deprecated

    (Since version 2015-09-03) Use compressLKProof instead

Inherited from Logger

Inherited from AnyRef

Inherited from Any

Ungrouped