1 (* Copyright (C) 2006, HELM Team.
3 * This file is part of HELM, an Hypertextual, Electronic
4 * Library of Mathematics, developed at the Computer Science
5 * Department, University of Bologna, Italy.
7 * HELM is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * HELM is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with HELM; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
26 type rule = SuperpositionRight | SuperpositionLeft | Demodulation
28 (* every equality group has its own bag. the bag contains the infos necessary
29 * for building the proof. FIXME: should also contain maxmeta! *)
32 val mk_equality_bag: unit -> equality_bag
38 | Step of Subst.substitution * (rule * int * (Utils.pos * int) * Cic.term)
40 and goal_proof = (rule * Utils.pos * int * Subst.substitution * Cic.term) list
42 type goal = goal_proof * Cic.metasenv * Cic.term
46 (Cic.name option) list -> goal_proof -> proof -> Subst.substitution -> int ->
49 val pp_proofterm: Cic.term -> string
52 equality_bag -> int * proof *
53 (Cic.term * Cic.term * Cic.term * Utils.comparison) *
58 int * (Cic.term * Cic.term * Cic.term * Utils.comparison) * Cic.metasenv ->
64 (Cic.term * Cic.term * Cic.term * Utils.comparison) *
66 val depend : equality_bag -> equality -> int -> bool
67 val compare : equality -> equality -> int
68 val max_weight_in_proof : equality_bag -> int -> proof -> int
69 val max_weight : equality_bag -> goal_proof -> proof -> int
70 val string_of_equality :
71 ?env:Utils.environment -> equality -> string
73 ?names:(Cic.name option)list -> equality_bag -> proof -> goal_proof -> string
74 (* given a proof and a list of meta indexes we are interested in the
75 * instantiation gives back the cic proof and the list of instantiations *)
76 (* build_goal_proof [eq_URI] [goal_proof] [initial_proof] [ty]
77 * [ty] is the type of the goal *)
80 UriManager.uri -> goal_proof -> proof -> Cic.term-> int list ->
81 Cic.context -> Cic.metasenv ->
82 Cic.term * Cic.term list
83 val build_proof_term :
85 UriManager.uri -> (int * Cic.term) list -> int -> proof -> Cic.term
86 val refl_proof: UriManager.uri -> Cic.term -> Cic.term -> Cic.term
87 (** ensures that metavariables in equality are unique *)
88 val fix_metas_goal: int -> goal -> int * goal
89 val fix_metas: equality_bag -> int -> equality -> int * equality
90 val metas_of_proof: equality_bag -> proof -> int list
92 (* this should be used _only_ to apply (efficiently) this subst on the
93 * initial proof passed to build_goal_proof *)
94 val add_subst : Subst.substitution -> proof -> proof
95 exception TermIsNotAnEquality;;
98 raises TermIsNotAnEquality if term is not an equation.
99 The first Cic.term is a proof of the equation
101 val equality_of_term: equality_bag -> Cic.term -> Cic.term -> equality
104 Re-builds the term corresponding to this equality
106 val term_of_equality: UriManager.uri -> equality -> Cic.term
107 val term_is_equality: Cic.term -> bool
109 (** tests a sort of alpha-convertibility between the two terms, but on the
111 val meta_convertibility: Cic.term -> Cic.term -> bool
113 (** meta convertibility between two equations *)
114 val meta_convertibility_eq: equality -> equality -> bool
116 val is_weak_identity: equality -> bool
117 val is_identity: Utils.environment -> equality -> bool
119 (* symmetric [eq_ty] [l] [id] [uri] [m]
121 * given an equality (_,p,(_,[l],r,_),[m],[id]) of 'type' l=r
122 * returns the proof of the symmetric (r=l).
124 * [uri] is the uri of eq
125 * [eq_ty] the ty of the equality sides
128 equality_bag -> Cic.term -> Cic.term -> int -> UriManager.uri ->
129 Cic.metasenv -> proof
131 (* takes 3 lists of alive ids (they are threated the same way, the type is
132 * funny just to not oblige you to concatenate them) and drops all the dead
134 val collect: equality_bag -> int list -> int list -> int list -> unit
136 (* given an equality, returns the numerical id *)
137 val id_of: equality -> int
139 (* profiling statistics *)
140 val get_stats: unit -> string