Changeset 6b86f1c in git for factory/cf_factor.cc
- Timestamp:
- Mar 5, 2014, 11:24:29 AM (10 years ago)
- Branches:
- (u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
- Children:
- df8aaffd8917f49072699c87bb028454653cacc3
- Parents:
- fa502097e0f6e99adaf0a797bd0957c1c79369ba
- git-author:
- Jakob Kröker <kroeker@math.uni-hannover.de>2014-03-05 11:24:29+01:00
- git-committer:
- Martin Lee <martinlee84@web.de>2014-03-11 11:06:26+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_factor.cc
rfa50209 r6b86f1c 487 487 #endif //HAVE_NTL 488 488 { // Use Factory without NTL 489 factoryError ("uniivariate factorization not implemented");489 factoryError ("uniivariate factorization depends on NTL(missing)"); 490 490 return CFFList (CFFactor (f, 1)); 491 491 } … … 518 518 } 519 519 #else 520 ASSERT( f.isUnivariate(), "multivariate factorization not implemented" );521 factoryError ("multivariate factorization not implemented");520 ASSERT( f.isUnivariate(), "multivariate factorization depends on NTL(missing)" ); 521 factoryError ("multivariate factorization depends on NTL(missing)"); 522 522 return CFFList (CFFactor (f, 1)); 523 523 #endif … … 568 568 #else 569 569 { 570 factoryError ("univariate factorization over Z not implemented");570 factoryError ("univariate factorization over Z depends on NTL(missing)"); 571 571 return CFFList (CFFactor (f, 1)); 572 572 } … … 588 588 Off (SW_RATIONAL); 589 589 #else 590 factoryError ("multivariate factorization not implemented");590 factoryError ("multivariate factorization depends on NTL(missing)"); 591 591 return CFFList (CFFactor (f, 1)); 592 592 #endif … … 722 722 #endif 723 723 { 724 factoryError ("univariate factorization not implemented");724 factoryError ("univariate factorization depends on NTL(missing)"); 725 725 return CFFList (CFFactor (f, 1)); 726 726 } … … 731 731 F= FqFactorize (f, alpha); 732 732 #else 733 ASSERT( f.isUnivariate(), "multivariate factorization not implemented" );734 factoryError ("multivariate factorization not implemented");733 ASSERT( f.isUnivariate(), "multivariate factorization depends on NTL(missing)" ); 734 factoryError ("multivariate factorization depends on NTL(missing)"); 735 735 return CFFList (CFFactor (f, 1)); 736 736 #endif … … 746 746 F= ratFactorize (f, alpha); 747 747 #else 748 ASSERT( f.isUnivariate(), "multivariate factorization not implemented" );749 factoryError ("multivariate factorization not implemented");748 ASSERT( f.isUnivariate(), "multivariate factorization depends on NTL(missing)" ); 749 factoryError ("multivariate factorization depends on NTL(missing)"); 750 750 return CFFList (CFFactor (f, 1)); 751 751 #endif
Note: See TracChangeset
for help on using the changeset viewer.