3 <!-- Copyright (C) 2000, HELM Team -->
5 <!-- This file is part of HELM, an Hypertextual, Electronic -->
6 <!-- Library of Mathematics, developed at the Computer Science -->
7 <!-- Department, University of Bologna, Italy. -->
9 <!-- HELM is free software; you can redistribute it and/or -->
10 <!-- modify it under the terms of the GNU General Public License -->
11 <!-- as published by the Free Software Foundation; either version 2 -->
12 <!-- of the License, or (at your option) any later version. -->
14 <!-- HELM is distributed in the hope that it will be useful, -->
15 <!-- but WITHOUT ANY WARRANTY; without even the implied warranty of -->
16 <!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
17 <!-- GNU General Public License for more details. -->
19 <!-- You should have received a copy of the GNU General Public License -->
20 <!-- along with HELM; if not, write to the Free Software -->
21 <!-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, -->
22 <!-- MA 02111-1307, USA. -->
24 <!-- For details, see the HELM World-Wide-Web page, -->
25 <!-- http://cs.unibo.it/helm/. -->
27 <!--******************************************************************-->
29 <!-- First draft: April 3 2000 -->
30 <!-- HELM Group: Asperti, Padovani, Sacerdoti, Schena, Guidi -->
31 <!--******************************************************************-->
33 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
34 xmlns:m="http://www.w3.org/1998/Math/MathML"
35 xmlns:helm="http://www.cs.unibo.it/helm">
38 <!-- ************************* LOGIC *********************************-->
42 <xsl:template match="APPLY[MUTIND[attribute::uri='cic:/Coq/Init/Logic/Conjunction/and.ind'] and (count(child::*) = 3)]" mode="pure">
43 <m:apply helm:xref="{@id}">
44 <m:and definitionURL="{MUTIND/@uri}" helm:xref="{MUTIND/@id}"/>
45 <xsl:apply-templates select="*[2]" mode="noannot"/>
46 <xsl:apply-templates select="*[3]" mode="noannot"/>
52 <xsl:template match="APPLY[MUTIND[attribute::uri='cic:/Coq/Init/Logic/Disjunction/or.ind'] and (count(child::*) = 3)]" mode="pure">
53 <m:apply helm:xref="{@id}">
54 <m:or definitionURL="{MUTIND/@uri}" helm:xref="{MUTIND/@id}"/>
55 <xsl:apply-templates select="*[2]" mode="noannot"/>
56 <xsl:apply-templates select="*[3]" mode="noannot"/>
62 <xsl:template match="APPLY[CONST[attribute::uri='cic:/Coq/Init/Logic/not.con'] and (count(child::*) = 2)]" mode="pure">
63 <m:apply helm:xref="{@id}">
64 <m:not definitionURL="{CONST/@uri}" helm:xref="{MUTIND/@id}"/>
65 <xsl:apply-templates select="*[2]" mode="noannot"/>
71 <xsl:template match="APPLY[CONST[attribute::uri='cic:/Coq/Init/Logic/Equivalence/iff.ind'] and (count(child::*) = 3)]" mode="pure">
72 <m:apply helm:xref="{@id}">
73 <m:iff definitionURL="{CONST/@uri}" helm:xref="{CONST/@id}"/>
74 <xsl:apply-templates select="*[2]" mode="noannot"/>
75 <xsl:apply-templates select="*[3]" mode="noannot"/>
82 <xsl:template match="APPLY[MUTIND[attribute::uri='cic:/Coq/Init/Logic/First_order_quantifiers/ex.ind' or attribute::uri='cic:/Coq/Init/Logic_Type/exT.ind'] and (count(child::*) = 3)]" mode="pure">
83 <m:apply helm:xref="{@id}">
84 <m:exists definitionURL="{MUTIND/@uri}" helm:xref="{MUTIND/@id}"/>
86 <xsl:when test="name(*[3]) = 'LAMBDA'">
88 <m:ci><xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="*[3]/target/@binder"/></xsl:with-param></xsl:call-template></m:ci>
91 <xsl:apply-templates select="*[2]" mode="pure"/>
93 <xsl:apply-templates select="LAMBDA/target" mode="noannot"/>
100 <xsl:apply-templates select="*[2]" mode="pure"/>
103 <m:csymbol>app</m:csymbol>
104 <xsl:apply-templates select="*[3]" mode="noannot"/>
112 <xsl:template match="APPLY[MUTIND[attribute::uri='cic:/Coq/Init/Logic/First_order_quantifiers/ex2.ind' or attribute::uri='cic:/Coq/Init/Logic_Type/exT2.ind'] and (count(child::*) = 4)]" mode="pure">
113 <m:apply helm:xref="{@id}">
114 <m:exists definitionURL="{MUTIND/@uri}" helm:xref="{MUTIND/@id}"/>
116 <xsl:when test="name(*[3]) = 'LAMBDA'">
117 <xsl:variable name="bvarname" select="*[3]/target/@binder"/>
119 <m:ci><xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="$bvarname"/></xsl:with-param></xsl:call-template></m:ci>
122 <xsl:apply-templates select="LAMBDA[1]/target" mode="noannot"/>
125 <xsl:when test="(name(*[4]) = 'LAMBDA') and
126 ($bvarname = *[4]/target/@binder)">
127 <xsl:apply-templates select="LAMBDA[2]/target" mode="noannot"/>
131 <m:csymbol>app</m:csymbol>
132 <xsl:apply-templates select="*[4]" mode="noannot"/>
133 <m:ci><xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="$bvarname"/></xsl:with-param></xsl:call-template></m:ci>
140 <xsl:when test="name(*[4]) = 'LAMBDA'">
141 <xsl:variable name="bvarname" select="*[4]/target/@binder"/>
143 <m:ci><xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="$bvarname"/></xsl:with-param></xsl:call-template></m:ci>
147 <m:csymbol>app</m:csymbol>
148 <xsl:apply-templates select="*[3]" mode="noannot"/>
149 <m:ci><xsl:call-template name="insert_subscript"><xsl:with-param name="node_value"><xsl:value-of select="$bvarname"/></xsl:with-param></xsl:call-template></m:ci>
152 <xsl:apply-templates select="*[4]/target" mode="noannot"/>
160 <m:csymbol>app</m:csymbol>
161 <xsl:apply-templates select="*[3]" mode="noannot"/>
166 <m:csymbol>app</m:csymbol>
167 <xsl:apply-templates select="*[4]" mode="noannot"/>
177 <!-- EQUALITY and TYPE EQUALITY -->
179 <xsl:template match="APPLY[MUTIND/@uri='cic:/Coq/Init/Logic/Equality/eq.ind']" mode="pure">
180 <xsl:call-template name="mk-mml-op-noannot">
181 <xsl:with-param name="hide" select="1"/>
182 <xsl:with-param name="c-tag" select="MUTIND"/>
183 <xsl:with-param name="m-tag" select="'eq'"/>
187 <xsl:template match="APPLY[MUTIND/@uri='cic:/Coq/Init/Logic_Type/eqT.ind']" mode="pure">
188 <xsl:call-template name="mk-mml-op-noannot">
189 <xsl:with-param name="hide" select="1"/>
190 <xsl:with-param name="c-tag" select="MUTIND"/>
191 <xsl:with-param name="m-tag" select="'eq'"/>
196 <!-- NOT and EQ have no parameters -->
197 <xsl:template match="APPLY[CONST[attribute::uri='cic:/Coq/Init/Logic/not.con']
198 and (count(child::*) = 2) and APPLY[MUTIND[attribute::uri='cic:/Coq/Init/Logic/Equality/eq.ind']]]" mode="pure">
200 <xsl:when test="count(APPLY/child::*) = 4">
201 <m:apply helm:xref="{@id}">
203 <xsl:apply-templates select="*[2]/*[3]" mode="noannot"/>
204 <xsl:apply-templates select="*[2]/*[4]" mode="set"/>
214 <xsl:template match="APPLY[CONST[attribute::uri='cic:/Coq/Init/Logic/not.con']
215 and (count(child::*) = 2) and APPLY[MUTIND[attribute::uri='cic:/Coq/Init/Logic_Type/eqT.ind']]]" mode="pure">
217 <xsl:when test="count(APPLY/child::*) = 4">
218 <m:apply helm:xref="{@id}">
220 <xsl:apply-templates select="*[2]/*[3]" mode="noannot"/>
221 <xsl:apply-templates select="*[2]/*[4]" mode="set"/>
230 <!-- ************************ DATATYPES ******************************* -->
232 <!-- no datatypes in MathML content -->
234 <!-- ************************** PEANO ********************************* -->
236 <!-- see arith.xsl --> <!-- FG -->