1 (* Copyright (C) 2005, 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/
28 module Ast = CicNotationPt
29 module Util = CicNotationUtil
37 | Uri of UriManager.uri
38 | NRef of NReference.reference
39 | Appl of cic_mask_t list
41 let uri_of_term t = CicUtil.uri_of_term (Deannotate.deannotate_term t)
43 let mask_of_cic = function
44 | Cic.AAppl (_, tl) -> Appl (List.map (fun _ -> Blob) tl), tl
45 | Cic.AConst (_, _, [])
47 | Cic.AMutInd (_, _, _, [])
48 | Cic.AMutConstruct (_, _, _, _, []) as t -> Uri (uri_of_term t), []
52 let mask, tl = mask_of_cic t in
55 let mask_of_appl_pattern = function
56 | Ast.NRefPattern nref -> NRef nref, []
57 | Ast.UriPattern uri -> Uri uri, []
59 | Ast.VarPattern _ -> Blob, []
60 | Ast.ApplPattern pl -> Appl (List.map (fun _ -> Blob) pl), pl
62 let tag_of_pattern p =
63 let mask, pl = mask_of_appl_pattern p in
66 type pattern_t = Ast.cic_appl_pattern
67 type term_t = Cic.annterm
69 let string_of_pattern = CicNotationPp.pp_cic_appl_pattern
70 let string_of_term t = CicPp.ppterm (Deannotate.deannotate_term t)
72 let classify = function
74 | Ast.VarPattern _ -> PatternMatcher.Variable
77 | Ast.ApplPattern _ -> PatternMatcher.Constructor
80 module M = PatternMatcher.Matcher (Pattern32)
83 let match_cb rows matched_terms constructors =
91 | Ast.ImplicitPattern -> Util.fresh_name (), t
92 | Ast.VarPattern name -> name, t
95 with Invalid_argument _ -> assert false in
96 let rec check_non_linear_patterns =
103 CicUtil.alpha_equivalence
104 (Deannotate.deannotate_term t) (Deannotate.deannotate_term t')
105 ) tl && check_non_linear_patterns tl
107 if check_non_linear_patterns env then
108 Some (env, constructors, pid)
113 M.compiler rows match_cb (fun () -> None)