X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_paramodulation%2Fsuperposition.mli;h=30d32d540a330d8bdb9495b086a134e0fffd5391;hb=a09f5b76d65deba858fbba1a8b6e8481702d2166;hp=cce81944bd497d286b50c22c31d4055c3c4e5228;hpb=4ae7d510a430a2a6929f973d36b993d528772d64;p=helm.git diff --git a/helm/software/components/ng_paramodulation/superposition.mli b/helm/software/components/ng_paramodulation/superposition.mli index cce81944b..30d32d540 100644 --- a/helm/software/components/ng_paramodulation/superposition.mli +++ b/helm/software/components/ng_paramodulation/superposition.mli @@ -11,7 +11,7 @@ (* $Id: index.mli 9822 2009-06-03 15:37:06Z tassi $ *) -module Superposition (B : Terms.Blob) : +module Superposition (B : Orderings.Blob) : sig (* bag, maxvar, meeting point *) @@ -37,21 +37,43 @@ module Superposition (B : Terms.Blob) : B.t Terms.unit_clause -> Index.Index(B).DT.t -> B.t Terms.bag * B.t Terms.unit_clause - val forward_simplify : + val simplify : Index.Index(B).DT.t -> + int -> B.t Terms.bag -> B.t Terms.unit_clause -> - (B.t Terms.bag * B.t Terms.unit_clause) option + B.t Terms.bag * (B.t Terms.unit_clause option) (* may raise success *) - val backward_simplify : + val simplify_goal : + no_demod:bool -> int -> Index.Index(B).DT.t -> B.t Terms.bag -> + B.t Terms.unit_clause list -> B.t Terms.unit_clause -> - B.t Terms.bag * B.t Terms.unit_clause + (B.t Terms.bag * B.t Terms.unit_clause) option - end + val one_pass_simplification: + B.t Terms.unit_clause -> + Index.Index(B).active_set -> + B.t Terms.bag -> + int -> + B.t Terms.bag * (B.t Terms.unit_clause * Index.Index(B).active_set) option + val keep_simplified: + B.t Terms.unit_clause -> + Index.Index(B).active_set -> + B.t Terms.bag -> + int -> + B.t Terms.bag * (B.t Terms.unit_clause * Index.Index(B).active_set) option + val orphan_murder: + B.t Terms.bag -> + B.t Terms.unit_clause list -> + B.t Terms.unit_clause -> + bool + + + end