Module ProofState.CQueue
Priority queues on clauses
val register_conjecture_clause : C.t -> unit
module WeightFun : sig ... end
module PriorityFun : sig ... endval length : t -> intNumber of elements
val is_empty : t -> boolcheck whether the queue is empty
val name : t -> stringName of the implementation/role of the queue
Available Queues
val bfs : unit -> tFIFO
val almost_bfs : unit -> tHalf FIFO, half default
val explore : unit -> tUse heuristics for selecting "small" clauses
val ground : unit -> tFavor positive unit clauses and ground clauses
val goal_oriented : unit -> tcustom weight function that favors clauses that are "close" to initial conjectures. It is fair.
val default : unit -> tObtain the default queue
val of_profile : ClauseQueue_intf.profile -> tSelect the queue corresponding to the given profile