Changeset 432937c in git for Tst/Manual/sqr.tst


Ignore:
Timestamp:
Jul 20, 2018, 3:19:35 PM (5 years ago)
Author:
Hans Schoenemann <hannes@…>
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
Message:
fix: accuracy for sqr/nt_solve (atkins.lib/ntsolve.lib)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Tst/Manual/sqr.tst

    r603a989 r432937c  
    11LIB "tst.lib"; tst_init();
    22LIB "atkins.lib";
    3 ring R = (real,60),x,dp;
     3ring R25 = (real,25),x,dp;
    44number ww=288469650108669535726081;
    5 sqr(ww,60);
     5number r=sqr(ww,25);
     6r;
     7r*r-ww;
     8ww;
     9ring R30 = (real,30),x,dp;
     10number ww=288469650108669535726081;
     11number r=sqr(ww,30);
     12r;
     13r*r-ww;
     14ww;
     15ring R60 = (real,60),x,dp;
     16number ww=288469650108669535726081;
     17number r=sqr(ww,60);
     18r;
     19r*r-ww;
     20ww;
    621tst_status(1);$
Note: See TracChangeset for help on using the changeset viewer.