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

spielwiese
Last change on this file since d4b25e was 9792cb, checked in by Hans Schoenemann <hannes@…>, 13 years ago
tests for tr 316 git-svn-id: file:///usr/local/Singular/svn/trunk@13889 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 387 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.