X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fcomponents%2Fhbugs%2Fhbugs_common.ml;fp=matita%2Fcomponents%2Fhbugs%2Fhbugs_common.ml;h=0000000000000000000000000000000000000000;hb=f9a3532255fb8dd1bf88902898bfe887a078c53e;hp=fe2ecfcae1a97b396f2124f1079bad5bb967a3d2;hpb=263103153fd8782ff95c4d075339a445a64bea1d;p=helm.git diff --git a/matita/components/hbugs/hbugs_common.ml b/matita/components/hbugs/hbugs_common.ml deleted file mode 100644 index fe2ecfcae..000000000 --- a/matita/components/hbugs/hbugs_common.ml +++ /dev/null @@ -1,48 +0,0 @@ -(* - * Copyright (C) 2003: - * Stefano Zacchiroli - * for the HELM Team http://helm.cs.unibo.it/ - * - * 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/ - *) - -(* $Id$ *) - -open Hbugs_types;; -open Printf;; - -let rec string_of_hint = function - | Use_ring -> "Use Ring, Luke!" - | Use_fourier -> "Use Fourier, Luke!" - | Use_reflexivity -> "Use reflexivity, Luke!" - | Use_symmetry -> "Use symmetry, Luke!" - | Use_assumption -> "Use assumption, Luke!" - | Use_contradiction -> "Use contradiction, Luke!" - | Use_exists -> "Use exists, Luke!" - | Use_split -> "Use split, Luke!" - | Use_left -> "Use left, Luke!" - | Use_right -> "Use right, Luke!" - | Use_apply term -> sprintf "Apply %s, Luke!" term - | Hints hints -> String.concat "; " (List.map string_of_hint hints) -;; -