source: git/Tst/Wester/X.tst @ 56c0fe

spielwiese
Last change on this file since 56c0fe was 2e49a5, checked in by Olaf Bachmann <obachman@…>, 23 years ago
* initial commit git-svn-id: file:///usr/local/Singular/svn/trunk@5001 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 469 bytes
Line 
1LIB "tst.lib"; tst_init();
2
3ring R = (17027, t), (x, y, z), lp;
4minpoly = t^2 + 1;
5
6poly g;
7
8
9poly p4 = (7*t*y*x^2*z^2 - 3*t + t*x*y*z + 11*(x + 1 + t)*y^2 + 5*z + t
10+ 1)^4*(3*t*x - 7*t*y + 2*z - 3*t + 1)^5;
11poly q4 = (7*t*y*x^2*z^2 - 3*t + t*x*y*z + 11*(x + 1 + t)*y^2 + 5*z + t
12+ 1)^3*(3*t*x - 7*t*y + 2*z + 3*t - 1)^6;
13
14tst_InitTimer();
15
16g = gcd(p4, q4);
17
18tst_ReportTimer("X");
19
20g;
21
22tst_InitTimer();
23factorize(g);
24tst_ReportTimer("X+");
25
26kill R;
27
28tst_status(1); $
29
30
Note: See TracBrowser for help on using the repository browser.