]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_paramodulation/nCicBlob.ml
more functors
[helm.git] / helm / software / components / ng_paramodulation / nCicBlob.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 (* $Id: terms.mli 9822 2009-06-03 15:37:06Z tassi $ *)
13
14 module type NCicContext = 
15   sig
16     val metasenv : NCic.metasenv
17     val subst : NCic.substitution
18     val context : NCic.context
19   end
20
21 module NCicBlob(C : NCicContext) : Terms.Blob with type t = NCic.term = struct
22
23   type t = NCic.term
24
25   let eq x y = NCicReduction.alpha_eq C.metasenv C.subst C.context x y;;
26
27   let rec compare x y = 
28     match x,y with
29     | NCic.Rel i, NCic.Rel j -> i-j
30     | NCic.Const r1, NCic.Const r2 -> NReference.compare r1 r2
31     | NCic.Appl l1, NCic.Appl l2 -> assert false (* TODO *)
32     | _ -> assert false
33   ;;
34
35   let pp t = 
36     NCicPp.ppterm ~context:C.context ~metasenv:C.metasenv ~subst:C.subst t;;
37
38  end