Changeset de99f11 in git for Tst/Short/general_s.tst
- Timestamp:
- Dec 14, 2000, 6:00:07 PM (23 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- e6ad6a7fd5b9f92e598bc1761a529d6d8f0bf64d
- Parents:
- 48aa4276cf97011ac89467d16c1dad20afda643e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Tst/Short/general_s.tst
r48aa42 rde99f11 21 21 poly f=x^30+y^30; 22 22 def l = watchdog(1,"factorize(eval("+string(f)+"))"); 23 23 int ok = 0; 24 24 if (typeof(l) == "string") 25 25 { 26 26 if (l == "Killed") 27 27 { 28 1;28 ok = 1; 29 29 } 30 30 } … … 32 32 { 33 33 poly pp = x16+x14y2-x10y6-x8y8-x6y10+x2y14+y16; 34 if (typeof(l) == list)34 if (typeof(l) == "list") 35 35 { 36 if (l[1][5] == p )36 if (l[1][5] == pp) 37 37 { 38 38 ok = 1; 39 39 } 40 40 } 41 41 } 42 ok; 42 43 watchdog(100,"factorize(eval("+string(f)+"))"); 43 44
Note: See TracChangeset
for help on using the changeset viewer.