Class/Object

ap.proof.goal

TaskManager

Related Docs: object TaskManager | package goal

Permalink

class TaskManager extends AnyRef

An immutable class (priority queue) for handling a set of tasks in a proof goal. This is implemented using a leftist heap.

TODO: So far, no subsumption checks are performed

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TaskManager
  2. AnyRef
  3. 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. def +(t: PrioritisedTask): TaskManager

    Permalink
  4. def ++(elems: Iterable[PrioritisedTask]): TaskManager

    Permalink
  5. final def ==(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  8. def dequeueWhile(pred: (Task) ⇒ Boolean): (TaskManager, Seq[Task])

    Permalink

    Dequeue as long as the given predicate is satisfied

  9. def enqueue(elems: PrioritisedTask*): TaskManager

    Permalink
  10. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. def filter(p: (PrioritisedTask) ⇒ Boolean): TaskManager

    Permalink

    Eliminate all prioritised tasks for which the given predicate is false.

  13. def finalEagerTask: Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  16. def isEmpty: Boolean

    Permalink
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def max: Task

    Permalink

    Returns the element with the smallest priority value in the queue, or throws an error if there is no element contained in the queue.

    Returns the element with the smallest priority value in the queue, or throws an error if there is no element contained in the queue.

    returns

    the element with the smallest priority.

  19. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  22. def prioritisedTasks: Iterable[PrioritisedTask]

    Permalink
  23. def removeFirst: TaskManager

    Permalink

    Remove the first task from the queue.

  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. val taskAggregator: VectorTaskAggregator

    Permalink
  26. def taskConstants: Set[ConstantTerm]

    Permalink
  27. def taskSummary: TaskSummary

    Permalink

    Computed information about the prioritised tasks (eager tasks are not considered at this point)

  28. def taskSummaryFor(agg: TaskAggregator): TaskSummary

    Permalink
  29. def toString(): String

    Permalink
    Definition Classes
    TaskManager → AnyRef → Any
  30. def updateTasks(goal: Goal, stopUpdating: (Task) ⇒ Boolean): TaskManager

    Permalink

    Update all PrioritisedTask stored by this managed, making use of possibly new facts and information from the goal.

    Update all PrioritisedTask stored by this managed, making use of possibly new facts and information from the goal. The argument stopUpdating can be used to tell at which point the updating of tasks can be stopped, because some task or fact has been discovered that can be used right away.

  31. final def wait(arg0: Long, arg1: Int): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped