source: git/Tst/Short/bug_tr316.tst @ a5b3bf

fieker-DuValspielwiese
Last change on this file since a5b3bf was a5b3bf, checked in by Hans Schoenemann <hannes@…>, 7 years ago
format
  • Property mode set to 100644
File size: 363 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// output should be suitable for input
5ring Rc =complex,x,dp;
6poly f = 0.0123*x2+0.03;
7f;
8execute("poly g="+string(f)+";");
9f==g;
10
11ring R = real,x,dp;
12poly f = 0.0123*x2+0.03;
13f;
14execute("poly g="+string(f)+";");
15f==g;
16
17ring R10 =(real,20,10),x,dp;
18poly f = 0.0123*x2+0.03;
19f;
20execute("poly g="+string(f)+";");
21f==g;
22
23tst_status(1);$
24
Note: See TracBrowser for help on using the repository browser.