X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FgTopLevel%2FdisambiguatingParser.mli;fp=helm%2FgTopLevel%2FdisambiguatingParser.mli;h=6edb842399971bd37f73bd0d20229fc4e7b1371d;hb=12809955a4a6c693072f5b924603165f83cc382e;hp=0000000000000000000000000000000000000000;hpb=0b42252cabbfd9b0e5b132ad8f7c378fd2a9b29b;p=helm.git diff --git a/helm/gTopLevel/disambiguatingParser.mli b/helm/gTopLevel/disambiguatingParser.mli new file mode 100644 index 000000000..6edb84239 --- /dev/null +++ b/helm/gTopLevel/disambiguatingParser.mli @@ -0,0 +1,48 @@ +(* Copyright (C) 2004, HELM Team. + * + * This file is part of HELM, an Hypertextual, Electronic + * Library of Mathematics, developed at the Computer Science + * Department, University of Bologna, Italy. + * + * HELM is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * HELM is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with HELM; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, + * MA 02111-1307, USA. + * + * For details, see the HELM World-Wide-Web page, + * http://helm.cs.unibo.it/ + *) + +exception NoWellTypedInterpretation + +module Environment : + sig + type t + val empty : t + val to_string : t -> string + val of_string : string -> t + end + +module Make (C : Disambiguate_types.Callbacks) : + sig + val disambiguate_term : + MQIConn.handle -> + Cic.context -> + Cic.metasenv -> + string -> + Environment.t -> (* previous interpretation status *) + Environment.t * (* new interpretation status *) + Cic.metasenv * (* new metasenv *) + Cic.term (* disambiguated term *) + end +