Packages

class InferenceRules extends UnificationSearcher

Created by podtelkin on 18.07.17.

Linear Supertypes
UnificationSearcher, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InferenceRules
  2. UnificationSearcher
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InferenceRules(initialClauses: ListBuffer[Clause], decisionMaker: DecisionMaker, decisions: Set[Literal], withSetOfSupport: Boolean)(implicit rnd: Random)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from InferenceRules to any2stringadd[InferenceRules] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (InferenceRules, B)
    Implicit
    This member is added by an implicit conversion from InferenceRules to ArrowAssoc[InferenceRules] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def CDCLResolve(CDCLClauses: ListBuffer[CRProofNode]): Option[ProblemStatus]
  7. val VARIABLE_NAME: String
  8. def addCDCLClauses(nodes: Seq[CRProofNode]): Unit
  9. def addNewCDCLClauses(CDCLClauses: ListBuffer[CRProofNode]): Unit
  10. def addNewClauses(newClauses: Seq[Clause]): Unit
    Definition Classes
    UnificationSearcher
  11. def addNode(clause: Clause, node: CRProofNode): Unit
  12. def addProvedLiterals(literals: Seq[Literal]): Unit
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def available: Set[Literal]
  15. val cdclNodes: Map[Clause, CRProofNode]

    For every CDCL clause we need only one proofNode

  16. def clausesForPropagation(provedLiterals: Set[Literal]): Set[Clause]
    Definition Classes
    UnificationSearcher
  17. def clearUnifiableUnits(): Unit
    Definition Classes
    UnificationSearcher
  18. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. def ensuring(cond: (InferenceRules) ⇒ Boolean, msg: ⇒ Any): InferenceRules
    Implicit
    This member is added by an implicit conversion from InferenceRules to Ensuring[InferenceRules] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: (InferenceRules) ⇒ Boolean): InferenceRules
    Implicit
    This member is added by an implicit conversion from InferenceRules to Ensuring[InferenceRules] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: Boolean, msg: ⇒ Any): InferenceRules
    Implicit
    This member is added by an implicit conversion from InferenceRules to Ensuring[InferenceRules] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean): InferenceRules
    Implicit
    This member is added by an implicit conversion from InferenceRules to Ensuring[InferenceRules] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  25. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from InferenceRules to StringFormat[InferenceRules] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  27. def getBucketByExpr(expr: E): String
  28. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  29. def getUnifiers(literal: Literal): Seq[Literal]
    Definition Classes
    UnificationSearcher
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. val literals: HashSet[Literal]
    Definition Classes
    UnificationSearcher
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. val nonUnitClauses: Set[Clause]
    Definition Classes
    UnificationSearcher
  35. final def notify(): Unit
    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  37. val proofNodesByClause: Map[Clause, ListBuffer[CRProofNode]]

    For every proved clause we need to know all possible proofNodes, because premises affect on result

  38. def propagateAllClauses(): HashSet[Literal]
  39. val provedLiterals: Set[Literal]

    provedLiterals generated from initial clauses, cdcl clauses, current state of decisions and UnitPropagations

  40. def removeConflictPremises(decisionLiterals: Set[Literal]): Unit
  41. def removeNonValidLiterals(literals: Seq[Literal]): Unit
    Definition Classes
    UnificationSearcher
  42. def reset(): Unit
  43. def resolveUnitPropagations(clause: Clause, result: Set[Literal]): Unit
  44. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  45. def toString(): String
    Definition Classes
    AnyRef → Any
  46. val unifiableUnits: Map[Literal, Set[Literal]]
    Definition Classes
    UnificationSearcher
  47. def updateUnifiableUnits(newLiterals: Seq[Literal]): Unit
    Definition Classes
    UnificationSearcher
  48. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. def [B](y: B): (InferenceRules, B)
    Implicit
    This member is added by an implicit conversion from InferenceRules to ArrowAssoc[InferenceRules] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from UnificationSearcher

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped