class ExpertData extends AnyRef

Every expertActor stores this data structure to store clauses and to derive new clauses.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExpertData
  2. AnyRef
  3. 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 ExpertData(predicates: Set[Sym], withSetOfSupport: Boolean, maxIterationsWithoutDecision: Int)(implicit rnd: Random)

    predicates

    Set of predicates supported by the actor.

    withSetOfSupport

    Flag indicating to use "Set of support" strategy.

    maxIterationsWithoutDecision

    Maximum number of iterations without making a new decision.

    rnd

    Implicit structure to generate random numbers

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 ExpertData to any2stringadd[ExpertData] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ExpertData, B)
    Implicit
    This member is added by an implicit conversion from ExpertData to ArrowAssoc[ExpertData] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def addClauses(nodes: Seq[CRProofNode]): Unit
  7. def addInitialClauses(newClauses: Seq[Clause]): Unit
  8. def addNewClause(crProofNode: CRProofNode): Unit
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. val clauses: ListBuffer[ClauseInfo]
  11. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. val decisionsMaker: DecisionsMaker
  13. def ensuring(cond: (ExpertData) ⇒ Boolean, msg: ⇒ Any): ExpertData
    Implicit
    This member is added by an implicit conversion from ExpertData to Ensuring[ExpertData] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (ExpertData) ⇒ Boolean): ExpertData
    Implicit
    This member is added by an implicit conversion from ExpertData to Ensuring[ExpertData] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): ExpertData
    Implicit
    This member is added by an implicit conversion from ExpertData to Ensuring[ExpertData] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): ExpertData
    Implicit
    This member is added by an implicit conversion from ExpertData to Ensuring[ExpertData] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ExpertData to StringFormat[ExpertData] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. def getBucketByExpr(expr: E): String
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  24. val indexByClause: Map[Clause, Int]
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. val lastPropagatedLiterals: ListBuffer[(Literal, CRProofNode)]

    Buffers new proved literals to process it in resolveCDCL phase.

    Buffers new proved literals to process it in resolveCDCL phase. Cleared in resolveCDCL

  27. def makeDecision(wasNewCDCLs: Boolean): Unit
  28. val memorizedClauses: Set[(Clause, Clause)]

    Every node of the proof-graph can be uniquely identified by the current clause and the list of decisions which will be used in ConflictResolution inference rule.

    Every node of the proof-graph can be uniquely identified by the current clause and the list of decisions which will be used in ConflictResolution inference rule. This Set memorizes all possible pairs of (currentClause, decisionsClause).

  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  32. val propagatedLiteralsBuffer: ListBuffer[CRProofNode]
  33. val provedLiterals: Map[Literal, Int]

    Position in clauses for every derived unit clause(i.

    Position in clauses for every derived unit clause(i. e. literal).

  34. def removeCDCLPremises(premises: Set[Literal]): Unit
  35. def resolveCDCL: Seq[CRProofNode]
  36. def resolveUnitPropagation(): Unit
  37. def resolveUnitPropagationByClause(clauseInfo: ClauseInfo, unifiers: Seq[ListBuffer[Literal]], conclusionId: Int): Unit
  38. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. val unificator: Unificator
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def [B](y: B): (ExpertData, B)
    Implicit
    This member is added by an implicit conversion from ExpertData to ArrowAssoc[ExpertData] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped