Changeset f9d20d7 in git
- Timestamp:
- Nov 13, 2013, 10:42:33 AM (10 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- 2f1fda5d1caba9d94996a2cbeaaf1a3f83bbbe10
- Parents:
- b3e94aa7397457378c5b5253b4ba1d89eab89f32
- git-author:
- Christian Eder <ederc@mathematik.uni-kl.de>2013-11-13 10:42:33+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-11-15 14:58:02+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kstd2.cc
rb3e94aa rf9d20d7 50 50 #define F5C 0 51 51 #if F5C 52 #define F5CTAILRED 052 #define F5CTAILRED 1 53 53 #endif 54 54 55 55 #define SBA_PRODUCT_CRITERION 0 56 #define SBA_PRINT_ZERO_REDUCTIONS 0 57 #define SBA_PRINT_SIZE_G 0 58 #define SBA_PRINT_SIZE_SYZ 0 56 #define SBA_PRINT_ZERO_REDUCTIONS 1 57 #define SBA_PRINT_REDUCTION_STEPS 1 58 #define SBA_PRINT_SIZE_G 1 59 #define SBA_PRINT_SIZE_SYZ 1 59 60 #define SBA_PRINT_PRODUCT_CRITERION 0 61 62 long sba_reduction_steps; 60 63 /*********************************************** 61 64 * SBA stuff -- done … … 619 622 #endif 620 623 sigSafe = ksReducePolySig(h, &(strat->T[ii]), strat->S_2_R[ii], NULL, NULL, strat); 624 #if SBA_PRINT_REDUCTION_STEPS 625 sba_reduction_steps++; 626 #endif 621 627 // if reduction has taken place, i.e. the reduction was sig-safe 622 628 // otherwise start is already at the next position and the loop … … 1506 1512 long size_g = 0; 1507 1513 long size_syz = 0; 1514 // global variable 1515 sba_reduction_steps = 0; 1508 1516 1509 1517 ideal F = F0; … … 2055 2063 printf("ZERO REDUCTIONS: %ld\n",zeroreductions); 2056 2064 #endif 2065 #if SBA_PRINT_REDUCTION_STEPS 2066 printf("TOP S-REDUCTIONS: %ld\n",sba_reduction_steps); 2067 #endif 2057 2068 #if SBA_PRINT_SIZE_G 2058 2069 printf("SIZE OF G: %ld\n",size_g); … … 2064 2075 printf("PRODUCT CRITERIA: %ld\n",product_criterion); 2065 2076 #endif 2066 zeroreductions = 0; 2067 size_g = 0; 2068 size_syz = 0; 2069 product_criterion = 0; 2077 zeroreductions = 0; 2078 size_g = 0; 2079 size_syz = 0; 2080 product_criterion = 0; 2081 sba_reduction_steps = 0; 2070 2082 return (strat->Shdl); 2071 2083 }
Note: See TracChangeset
for help on using the changeset viewer.