source: git/Tst/Short/bug_div.tst @ ccbdf0

spielwiese
Last change on this file since ccbdf0 was b806aa, checked in by Hans Schönemann <hannes@…>, 17 years ago
*hannes: funny stuff in 3-0-3: fixed errors and default behav. git-svn-id: file:///usr/local/Singular/svn/trunk@10293 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 397 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// missing operations with reals/bigints:
5
6ring r10 = (real,10,20),x,dp;
7 1/0;
80/0;
9impart(0);
10repart(0);
11
12ring r = real,x,dp;
13 1/0;
140/0;
15impart(0);
16repart(0);
17ring r11 = (complex,i),x,dp;
18 1/0;
190/0;
20impart(0);
21repart(0);
22
23bigint M = 6;
24 -M;
250-M;      // Nur als Subtraktion
26-1*M;     // oder als Multilpikation moeglich
27int m = 6;  // fuer int OK
28-m;
29
30tst_status(1);$
Note: See TracBrowser for help on using the repository browser.