source: git/Tst/Wester/G.tst @ 1ebec3

spielwiese
Last change on this file since 1ebec3 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: 352 bytes
Line 
1LIB "tst.lib"; tst_init();
2
3ring R = 0, (x, y, z), lp;
4
5poly p = (7*y*x^2*z^2 - 3*x*y*z + 11*(x+1)*y2 + 5*z + 1)^4 *
6         (3*x - 7*y + 2*z - 3)^5;
7poly q = (7*y*x^2*z^2 - 3*x*y*z + 11*(x+1)*y2 + 5*z + 1)^3 *
8         (3*x - 7*y + 2*z - 3)^6;
9
10tst_InitTimer();
11
12poly g = gcd(p, q);
13
14tst_ReportTimer("G");
15 
16factorize(g);
17kill R;
18
19tst_status(1); $
20
Note: See TracBrowser for help on using the repository browser.