]> matita.cs.unibo.it Git - helm.git/blob - helm/style/arith.xsl
3784029a04e0528f67f74e33c446248df37210e0
[helm.git] / helm / style / arith.xsl
1 <?xml version="1.0"?>
2
3 <!-- Copyright (C) 2000, HELM Team                                     -->
4 <!--                                                                   -->
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.                         -->
8 <!--                                                                   -->
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.            -->
13 <!--                                                                   -->
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.                      -->
18 <!--                                                                   -->
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.                                              -->
23 <!--                                                                   -->
24 <!-- For details, see the HELM World-Wide-Web page,                    -->
25 <!-- http://cs.unibo.it/helm/.                                         -->
26
27 <!--******************************************************************--> 
28 <!-- Arithmetics                                                             -->
29 <!-- First draft: March 20 2001, Ferruccio Guidi                      -->
30 <!--******************************************************************-->
31
32 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
33                               xmlns:m="http://www.w3.org/1998/Math/MathML"
34                               xmlns:helm="http://www.cs.unibo.it/helm">
35
36 <!-- ************************** ARITHMETICS ****************************** -->
37
38 <xsl:template match="APPLY[MUTIND/@uri='cic:/Coq/Init/Peano/le.ind']" mode="pure">
39    <xsl:call-template name="mk-mml-op-noannot">
40       <xsl:with-param name="arity" select="2"/>
41       <xsl:with-param name="c-tag" select="MUTIND"/>
42       <xsl:with-param name="m-tag" select="'leq'"/>
43    </xsl:call-template>
44 </xsl:template>
45
46 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/lt.con']" mode="pure">
47    <xsl:call-template name="mk-mml-op-noannot">
48       <xsl:with-param name="arity" select="2"/>
49       <xsl:with-param name="c-tag" select="CONST"/>
50       <xsl:with-param name="m-tag" select="'lt'"/>
51    </xsl:call-template>
52 </xsl:template>
53
54 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/ge.con']" mode="pure">
55    <xsl:call-template name="mk-mml-op-noannot">
56       <xsl:with-param name="arity" select="2"/>
57       <xsl:with-param name="c-tag" select="CONST"/>
58       <xsl:with-param name="m-tag" select="'geq'"/>
59    </xsl:call-template>
60 </xsl:template>
61
62 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/gt.con']" mode="pure">
63    <xsl:call-template name="mk-mml-op-noannot">
64       <xsl:with-param name="arity" select="2"/>
65       <xsl:with-param name="c-tag" select="CONST"/>
66       <xsl:with-param name="m-tag" select="'gt'"/>
67    </xsl:call-template>
68 </xsl:template>
69
70 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/plus.con']" mode="pure">
71    <xsl:call-template name="mk-mml-op-noannot">
72       <xsl:with-param name="arity" select="2"/>
73       <xsl:with-param name="c-tag" select="CONST"/>
74       <xsl:with-param name="m-tag" select="'plus'"/>
75    </xsl:call-template>
76 </xsl:template>
77
78 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Arith/Minus/minus.con']" mode="pure">
79    <xsl:call-template name="mk-mml-op-noannot">
80       <xsl:with-param name="arity" select="2"/>
81       <xsl:with-param name="c-tag" select="CONST"/>
82       <xsl:with-param name="m-tag" select="'minus'"/>
83    </xsl:call-template>
84 </xsl:template>
85
86 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/mult.con']" mode="pure">
87    <xsl:call-template name="mk-mml-op-noannot">
88       <xsl:with-param name="arity" select="2"/>
89       <xsl:with-param name="c-tag" select="CONST"/>
90       <xsl:with-param name="m-tag" select="'times'"/>
91    </xsl:call-template>
92 </xsl:template>
93
94 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Arith/Min/min.con']" mode="pure">
95    <xsl:call-template name="mk-mml-op-noannot">
96       <xsl:with-param name="arity" select="2"/>
97       <xsl:with-param name="c-tag" select="CONST"/>
98       <xsl:with-param name="m-tag" select="'min'"/>
99    </xsl:call-template>
100 </xsl:template>
101
102 </xsl:stylesheet>