Changeset 432937c in git for Tst/Manual/sqr.tst
- Timestamp:
- Jul 20, 2018, 3:19:35 PM (5 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 79d81e55c8fa0bafcf778605ad3ed28e8b9a1321
- Parents:
- 603a9894476eb0322bbfbcb93b58502145498740
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2018-07-20 15:19:35+02:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2018-07-20 15:40:47+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Tst/Manual/sqr.tst
r603a989 r432937c 1 1 LIB "tst.lib"; tst_init(); 2 2 LIB "atkins.lib"; 3 ring R = (real,60),x,dp;3 ring R25 = (real,25),x,dp; 4 4 number ww=288469650108669535726081; 5 sqr(ww,60); 5 number r=sqr(ww,25); 6 r; 7 r*r-ww; 8 ww; 9 ring R30 = (real,30),x,dp; 10 number ww=288469650108669535726081; 11 number r=sqr(ww,30); 12 r; 13 r*r-ww; 14 ww; 15 ring R60 = (real,60),x,dp; 16 number ww=288469650108669535726081; 17 number r=sqr(ww,60); 18 r; 19 r*r-ww; 20 ww; 6 21 tst_status(1);$
Note: See TracChangeset
for help on using the changeset viewer.