]> matita.cs.unibo.it Git - helm.git/blob - helm/style/arith.xsl
added notations for abstact polinomials
[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                               xmlns:xlink="http://www.w3.org/1999/xlink">
36
37 <!-- ************************** ARITHMETICS ****************************** -->
38
39 <xsl:template match="APPLY[MUTIND/@uri='cic:/Coq/Init/Peano/le.ind']" mode="pure">
40    <xsl:call-template name="mkmml-op-noannot">
41       <xsl:with-param name="arity" select="2"/>
42       <xsl:with-param name="c-tag" select="MUTIND"/>
43       <xsl:with-param name="m-tag" select="'leq'"/>
44    </xsl:call-template>
45 </xsl:template>
46
47 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/lt.con']" mode="pure">
48    <xsl:call-template name="mkmml-op-noannot">
49       <xsl:with-param name="arity" select="2"/>
50       <xsl:with-param name="c-tag" select="CONST"/>
51       <xsl:with-param name="m-tag" select="'lt'"/>
52    </xsl:call-template>
53 </xsl:template>
54
55 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/ge.con']" mode="pure">
56    <xsl:call-template name="mkmml-op-noannot">
57       <xsl:with-param name="arity" select="2"/>
58       <xsl:with-param name="c-tag" select="CONST"/>
59       <xsl:with-param name="m-tag" select="'geq'"/>
60    </xsl:call-template>
61 </xsl:template>
62
63 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/gt.con']" mode="pure">
64    <xsl:call-template name="mkmml-op-noannot">
65       <xsl:with-param name="arity" select="2"/>
66       <xsl:with-param name="c-tag" select="CONST"/>
67       <xsl:with-param name="m-tag" select="'gt'"/>
68    </xsl:call-template>
69 </xsl:template>
70
71 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/plus.con']" mode="pure">
72    <xsl:call-template name="mkmml-op-noannot">
73       <xsl:with-param name="arity" select="2"/>
74       <xsl:with-param name="c-tag" select="CONST"/>
75       <xsl:with-param name="m-tag" select="'plus'"/>
76    </xsl:call-template>
77 </xsl:template>
78
79 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Arith/Minus/minus.con']" mode="pure">
80    <xsl:call-template name="mkmml-op-noannot">
81       <xsl:with-param name="arity" select="2"/>
82       <xsl:with-param name="c-tag" select="CONST"/>
83       <xsl:with-param name="m-tag" select="'minus'"/>
84    </xsl:call-template>
85 </xsl:template>
86
87 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/mult.con']" mode="pure">
88    <xsl:call-template name="mkmml-op-noannot">
89       <xsl:with-param name="arity" select="2"/>
90       <xsl:with-param name="c-tag" select="CONST"/>
91       <xsl:with-param name="m-tag" select="'times'"/>
92    </xsl:call-template>
93 </xsl:template>
94
95 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Arith/Min/min.con']" mode="pure">
96    <xsl:call-template name="mkmml-op-noannot">
97       <xsl:with-param name="arity" select="2"/>
98       <xsl:with-param name="c-tag" select="CONST"/>
99       <xsl:with-param name="m-tag" select="'min'"/>
100    </xsl:call-template>
101 </xsl:template>
102
103 </xsl:stylesheet>