Changeset 2072126 in git
- Timestamp:
- May 19, 2011, 5:22:56 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- b5cd25f4f43ce3d4a37ddaab1030082d1f09c0b1
- Parents:
- 55608a78dc5f45276e2138266996767392a31c2c
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/extra.cc
r55608a7 r2072126 3509 3509 /*==================== HNF =================*/ 3510 3510 #ifdef HAVE_FACTORY 3511 #ifdef HAVE_NTL 3511 3512 if (strcmp(sys_cmd, "HNF") == 0) 3512 3513 { … … 3549 3550 } 3550 3551 else 3552 #endif 3551 3553 /*================= factoras =========================*/ 3552 3554 if (strcmp (sys_cmd, "factoras") == 0) -
factory/cfNewtonPolygon.cc
r55608a7 r2072126 375 375 } 376 376 377 #ifdef HAVE_NTL 377 378 void convexDense(int** points, int sizePoints, mat_ZZ& M, vec_ZZ& A) 378 379 { … … 675 676 return result/Lc (result); //normalize 676 677 } 677 678 #endif -
factory/cf_gcd.cc
r55608a7 r2072126 13 13 #include "cf_primes.h" 14 14 #include "cf_algorithm.h" 15 #include "cf_factory.h" 15 16 #include "fac_util.h" 16 17 #include "templates/ftmpl_functions.h" … … 560 561 return fieldGCD(f,g); 561 562 } 563 #ifdef HAVE_NTL 562 564 else if ((!fc_and_gc_Univariate) && (isOn( SW_USE_EZGCD_P ))) 563 565 { … … 579 581 fc= EZGCD_P (fc, gc); 580 582 } 583 #endif 581 584 else if (isOn(SW_USE_GCD_P)) 582 585 { 583 586 fc=newGCD(fc,gc); 584 587 } 588 #ifdef HAVE_NTL 585 589 else if (isOn(SW_USE_FF_MOD_GCD) && !fc_and_gc_Univariate) 586 590 { … … 596 600 fc=GCD_small_p (fc, gc); 597 601 } 602 #endif 598 603 else if ( p1 == fc.level() ) 599 604 fc = gcd_poly_p( fc, gc ); -
kernel/clapsing.cc
r55608a7 r2072126 1561 1561 return res; 1562 1562 } 1563 #ifdef HAVE_NTL 1563 1564 matrix singntl_HNF(matrix m ) 1564 1565 { … … 1678 1679 return mm; 1679 1680 } 1681 #endif 1680 1682 1681 1683 napoly singclap_alglcm ( napoly f, napoly g ) -
kernel/clapsing.h
r55608a7 r2072126 40 40 matrix singclap_irrCharSeries ( ideal I); 41 41 42 #ifdef HAVE_NTL 42 43 matrix singntl_HNF(matrix A); 43 44 intvec* singntl_HNF(intvec* A); 44 45 matrix singntl_LLL(matrix A); 45 46 intvec* singntl_LLL(intvec* A); 47 #endif 46 48 47 49 BOOLEAN singclap_isSqrFree(poly f);
Note: See TracChangeset
for help on using the changeset viewer.