X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fparamodulation%2Finference.ml;h=04cdb0aeb8ebf8c8cff587dc81909045b76d3004;hb=d3e3b22ce9cca9e4ca80f75a6bdc4c2df93efb0b;hp=43211ccf93cf76f5fa393c5d21511b91fb77399c;hpb=b52f57d8573a909a486d52a7317e017f56d07199;p=helm.git diff --git a/helm/ocaml/paramodulation/inference.ml b/helm/ocaml/paramodulation/inference.ml index 43211ccf9..04cdb0aeb 100644 --- a/helm/ocaml/paramodulation/inference.ml +++ b/helm/ocaml/paramodulation/inference.ml @@ -23,6 +23,8 @@ * http://cs.unibo.it/helm/. *) +(* $Id$ *) + open Utils;; @@ -917,12 +919,10 @@ type environment = Cic.metasenv * Cic.context * CicUniv.universe_graph;; let is_identity ((metasenv, context, ugraph) as env) = function | ((_, _, (ty, left, right, _), menv, _) as equality) -> - (prerr_endline ("left = "^(CicPp.ppterm left)); - prerr_endline ("right = "^(CicPp.ppterm right)); (left = right || (* (meta_convertibility left right) || *) (fst (CicReduction.are_convertible - ~metasenv:(metasenv @ menv) context left right ugraph)))) + ~metasenv:(metasenv @ menv) context left right ugraph))) ;;