]> matita.cs.unibo.it Git - helm.git/blob - matita/components/binaries/matex/ground.ml
- plain anticipation for CIC proofs terms
[helm.git] / matita / components / binaries / matex / ground.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 module L = List
13 module P = Printf
14 module S = String
15
16 exception Error of string
17
18 (* interface functions ******************************************************)
19
20 let rec segments_of_string ss l s =
21    match try Some (S.index s '/') with Not_found -> None with
22       | None   -> s :: ss
23       | Some i -> segments_of_string (S.sub s 0 i :: ss) (l-i-1) (S.sub s (i+1) (l-i-1))
24
25 let rec rev_concat sep r = function
26    | []                  -> r 
27    | s :: ss             ->
28       if r = "" then rev_concat sep s ss else
29       rev_concat sep (s ^ sep ^ r) ss 
30
31 let fold_string map a s =
32    let l = S.length s in
33    let rec aux i a =
34       if i >= l then a else aux (succ i) (map a s.[i])
35    in
36    aux 0 a
37
38 let rec rev_neg_filter filter r = function
39    | []       -> r
40    | hd :: tl ->
41       if filter hd then rev_neg_filter filter r tl else rev_neg_filter filter (hd :: r) tl
42
43 let rec foldi_left mapi i a = function
44    | []       -> a
45    | hd :: tl -> foldi_left mapi (succ i) (mapi i a hd) tl
46
47 let rec rev_map_append map l r = match l with
48    | []       -> r
49    | hd :: tl -> rev_map_append map tl (map hd :: r)
50
51 let error s = raise (Error s)
52
53 let log s = P.eprintf "MaTeX: %s\n" s