Changeset 2ce53d in git
- Timestamp:
- Dec 29, 2013, 7:03:38 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- cd5b0fe0695b0fbe98f020435d935066ea3a5e8a
- Parents:
- e86e21bda42dff533a74d4741008e9bde372d619
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kstd2.cc
re86e21 r2ce53d 1686 1686 #endif 1687 1687 #if SBA_PRINT_SIZE_G 1688 long size_g = 0; 1688 int size_g = 0; 1689 int size_g_non_red = 0; 1689 1690 #endif 1690 1691 #if SBA_PRINT_SIZE_SYZ … … 2292 2293 else if (TEST_OPT_PROT) PrintLn(); 2293 2294 2294 #if SBA_PRINT_SIZE_G2295 size_g = strat->sl+1;2296 #endif2297 2295 #if SBA_PRINT_SIZE_SYZ 2298 2296 // that is correct, syzl is counting one too far … … 2317 2315 #endif /* MYTEST */ 2318 2316 #endif /* KDEBUG */ 2319 // using F5C it is possible that there is some data stored in the last 2320 // entries of strat->Shdl which are dirty, i.e. not correct, but also not NULL 2321 // => we need to delete them before return the ideal 2322 #if F5C 2323 for(int i=strat->sl+1;i<IDELEMS(strat->Shdl);i++) 2324 { 2325 //pDelete (&strat->Shdl->m[i]); 2326 strat->Shdl->m[i] = NULL; 2327 } 2317 #if SBA_PRINT_SIZE_G 2318 size_g_non_red = IDELEMS(strat->Shdl); 2328 2319 #endif 2329 2320 if ((strat->sbaOrder == 1 || strat->sbaOrder == 3) && sRing!=currRingOld) … … 2334 2325 rDelete (sRing); 2335 2326 } 2327 id_DelDiv(strat->Shdl, currRing); 2328 idSkipZeroes(strat->Shdl); 2336 2329 idTest(strat->Shdl); 2337 2330 2331 #if SBA_PRINT_SIZE_G 2332 size_g = IDELEMS(strat->Shdl); 2333 #endif 2338 2334 #ifdef DEBUGF5 2339 2335 printf("SIZE OF SHDL: %d\n",IDELEMS(strat->Shdl)); … … 2378 2374 #if SBA_PRINT_SIZE_G 2379 2375 printf("----------------------------------------------------------\n"); 2380 printf("SIZE OF G: %ld\n",size_g); 2381 size_g = 0; 2376 printf("SIZE OF G: %d / %d\n",size_g,size_g_non_red); 2377 size_g = 0; 2378 size_g_non_red = 0; 2382 2379 #endif 2383 2380 #if SBA_PRINT_SIZE_SYZ -
kernel/kutil.h
re86e21 r2ce53d 180 180 public: 181 181 unsigned long sev; 182 unsigned long from; // index in sig up to which the correspongin LObject was already checked183 182 unsigned long checked; // this is the index of S up to which 184 183 // the corresponding LObject was already checked in
Note: See TracChangeset
for help on using the changeset viewer.