Changeset 654726 in git
- Timestamp:
- Feb 21, 2014, 6:08:14 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 95eeda3a1e872aa8bf8c2026afc43e8f691af0fb
- Parents:
- f3703ede5c22d96bd2f3453cbb4d60e88ccec264
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/janet.cc
rf3703e r654726 793 793 } 794 794 795 #if 0 795 796 static void go_right(NodeM *current,poly_function disp) 796 797 { … … 803 804 } 804 805 805 #if 0806 806 void ForEach(TreeM *t,poly_function disp) 807 807 { -
Singular/walk.cc
rf3703e r654726 437 437 #endif 438 438 439 #ifdef CHECK_IDEAL_MWALK 439 440 static void idString(ideal L, const char* st) 440 441 { … … 448 449 Print(" %s;", pString(L->m[nL-1])); 449 450 } 450 451 //unused 452 //#if 0 451 #endif 452 453 #if defined(CHECK_IDEAL_MWALK) || defined(ENDWALKS) 453 454 static void headidString(ideal L, char* st) 454 455 { … … 462 463 Print(" %s;", pString(pHead(L->m[nL-1]))); 463 464 } 464 //#endif 465 466 //unused 467 //#if 0 465 #endif 466 467 #if defined(CHECK_IDEAL_MWALK) || defined(ENDWALKS) 468 468 static void idElements(ideal L, char* st) 469 469 { … … 503 503 omFree(K); 504 504 } 505 //#endif505 #endif 506 506 507 507 … … 4777 4777 } 4778 4778 4779 NEXT_VECTOR:4779 //NEXT_VECTOR: 4780 4780 to = clock(); 4781 4781 //intvec* next_weight = MkInterRedNextWeight(curr_weight,target_weight,G); -
kernel/syz0.cc
rf3703e r654726 772 772 } 773 773 774 #if 0 774 775 static void syMergeSortResolventFB(resolvente res,int length, int initial=1) 775 776 { … … 826 827 } 827 828 } 829 #endif 828 830 829 831 BOOLEAN syTestOrder(ideal M) -
libpolys/coeffs/bigintmat.cc
rf3703e r654726 20 20 #include <string.h> 21 21 22 #if 0 22 23 // Ungetestet 23 24 static void bimRowContent(bigintmat *bimat, int rowpos, int colpos); 24 25 static void bimReduce(bigintmat *bimat, int rpiv, int colpos, 25 26 int ready, int all); 26 27 #endif 27 28 28 29 … … 688 689 } 689 690 691 #if 0 690 692 // Ungetestet 691 693 // (According to C. Fieker) Seems to have a lot of memory leaks (pure adaptation of the … … 772 774 } 773 775 } 776 #endif 774 777 775 778 // columnwise concatination of two bigintmats -
libpolys/polys/clapconv.cc
rf3703e r654726 34 34 static void convRecTrP ( const CanonicalForm & f, int * exp, poly & result, int offs, const ring r ); 35 35 36 static void convRecGFGF ( const CanonicalForm & f, int * exp, poly & result );36 //static void convRecGFGF ( const CanonicalForm & f, int * exp, poly & result ); 37 37 38 38 static number convFactoryNSingAN( const CanonicalForm &f, const ring r); -
libpolys/polys/kbuckets.cc
rf3703e r654726 1162 1162 return rn; 1163 1163 } 1164 static BOOLEAN nIsPseudoUnit(number n, ring r)1165 {1166 if (rField_is_Zp(r))1167 return TRUE;1168 1169 if (rParameter(r)==NULL)1170 {1171 return (n_Size(n,r->cf)==1);1172 }1173 //if (r->parameter!=NULL)1174 return (n_IsOne(n,r->cf) || n_IsMOne(n,r->cf));1175 }1176 1164 1177 1165 #ifndef USE_COEF_BUCKETS 1178 1166 void kBucketSimpleContent(kBucket_pt) {} 1179 1167 #else 1168 static BOOLEAN nIsPseudoUnit(number n, ring r) 1169 { 1170 if (rField_is_Zp(r)) 1171 return TRUE; 1172 1173 if (rParameter(r)==NULL) 1174 { 1175 return (n_Size(n,r->cf)==1); 1176 } 1177 //if (r->parameter!=NULL) 1178 return (n_IsOne(n,r->cf) || n_IsMOne(n,r->cf)); 1179 } 1180 1180 1181 void kBucketSimpleContent(kBucket_pt bucket) 1181 1182 { -
libpolys/reporter/dError.cc
rf3703e r654726 50 50 int dReportError(const char* fmt, ...) 51 51 { 52 #if 0 52 53 #ifdef HAVE_EXECINFO_H 53 54 #define SIZE 50 54 55 void *buffer[SIZE+1]; int ret; 56 #endif 55 57 #endif 56 58
Note: See TracChangeset
for help on using the changeset viewer.