Skip to content

Commit

Permalink
#1 show tau max
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jun 29, 2021
1 parent 838b370 commit 64aeaf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/org/polystat/far/calculate.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ SOFTWARE.
<xsl:strip-space elements="*"/>
<xsl:import href="calc-function.xsl"/>
<xsl:function name="ps:tau">
<xsl:param name="idx" as="xs:integer"/>
<xsl:param name="idx" as="xs:string"/>
<xsl:param name="v" as="xs:integer"/>
<xsl:text>{</xsl:text>
<xsl:text>&#x1D70F;</xsl:text>
Expand Down Expand Up @@ -65,7 +65,7 @@ SOFTWARE.
<xsl:with-param name="y" select="$y"/>
<xsl:with-param name="x" select="."/>
<xsl:with-param name="pos" select="$r/@pos"/>
<xsl:with-param name="tau" select="ps:tau($r/@tau, position())"/>
<xsl:with-param name="tau" select="ps:tau(concat($r/@tau, ':', last()), position())"/>
</xsl:call-template>
</xsl:for-each>
</xsl:template>
Expand All @@ -84,7 +84,7 @@ SOFTWARE.
<xsl:with-param name="x" select="."/>
<xsl:with-param name="pos" select="$r/@pos"/>
<xsl:with-param name="tau">
<xsl:value-of select="ps:tau($r/@tau, position())"/>
<xsl:value-of select="ps:tau(concat($r/@tau, ':', last()), position())"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$opt/text()"/>
</xsl:with-param>
Expand Down

0 comments on commit 64aeaf3

Please sign in to comment.