Artifact 3246b8d4bfef1f14da359c8c3b8c6811bb5bfe20964de67dc636644563ae0363:
- Executable file
r38/log/mathml.rlg
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 1810) [annotate] [blame] [check-ins using] [more...]
Tue Apr 15 00:35:11 2008 run on win32 on mathml; % output sin (x); <math> <apply><sin/> <ci>x</ci> </apply> </math> (x + y)^5; <math> <apply><plus/> <apply><power/> <ci>x</ci> <cn type="integer">5</cn> </apply> <apply><times/> <cn type="integer">5</cn> <apply><power/> <ci>x</ci> <cn type="integer">4</cn> </apply> <ci>y</ci> </apply> <apply><times/> <cn type="integer">10</cn> <apply><power/> <ci>x</ci> <cn type="integer">3</cn> </apply> <apply><power/> <ci>y</ci> <cn type="integer">2</cn> </apply> </apply> <apply><times/> <cn type="integer">10</cn> <apply><power/> <ci>x</ci> <cn type="integer">2</cn> </apply> <apply><power/> <ci>y</ci> <cn type="integer">3</cn> </apply> </apply> <apply><times/> <cn type="integer">5</cn> <ci>x</ci> <apply><power/> <ci>y</ci> <cn type="integer">4</cn> </apply> </apply> <apply><power/> <ci>y</ci> <cn type="integer">5</cn> </apply> </apply> </math> off mathml; parseml(); <math> <apply><plus/> <cn>3</cn> <cn>5</cn> </apply> </math> 8 operator gt; % MathML 1.x form parseml(); <math> <reln><gt/> <ci>x</ci> <ci>y</ci> </reln> </math> x>y % MathML 2.x form parseml(); <math> <apply><gt/> <ci>x</ci> <ci>y</ci> </apply> </math> x>y end; Time for test: 1 ms, plus GC time: 10 ms