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/
31 let debug_print = if debug then prerr_endline else ignore ;;
34 ?do_heavy_checks ?include_paths ?clean_baseuri status str cb
38 let ast = GrafiteParser.parse_statement str in
41 GrafiteEngine.eval_ast
42 ~disambiguate_tactic:GrafiteDisambiguate.disambiguate_tactic
43 ~disambiguate_command:GrafiteDisambiguate.disambiguate_command
44 ?do_heavy_checks ?include_paths ?clean_baseuri !status ast
46 with End_of_file -> ()
48 let eval_from_stream_greedy
49 ?do_heavy_checks ?include_paths ?clean_baseuri status str cb
52 print_string "matita> ";
54 let ast = GrafiteParser.parse_statement str in
57 GrafiteEngine.eval_ast
58 ~disambiguate_tactic:GrafiteDisambiguate.disambiguate_tactic
59 ~disambiguate_command:GrafiteDisambiguate.disambiguate_command
60 ?do_heavy_checks ?include_paths ?clean_baseuri !status ast
64 let eval_string ?do_heavy_checks ?include_paths ?clean_baseuri status str =
66 ?do_heavy_checks ?include_paths ?clean_baseuri status
67 (Ulexing.from_utf8_string str) (fun _ _ -> ())
69 let default_options () = no_options
73 aliases = DisambiguateTypes.Environment.empty;
74 multi_aliases = DisambiguateTypes.Environment.empty;
77 proof_status = No_proof;
78 options = default_options ();