[SCM] an open source computer algebra system branch, cleanedupstream, updated. 6125e540ca6d66c307958938a9d53b245507c323
Bernhard R. Link
brlink at debian.org
Tue Apr 24 15:54:45 UTC 2012
The following commit has been merged in the cleanedupstream branch:
commit e9cb0dff926409529409aef08cde3988246bf772
Author: Martin Lee <martinlee84 at web.de>
Date: Wed Jan 11 14:44:21 2012 +0100
chg/fix: switched off Flint gcd over Z
diff --git a/factory/cf_gcd.cc b/factory/cf_gcd.cc
index e5c1e30..817c524 100644
--- a/factory/cf_gcd.cc
+++ b/factory/cf_gcd.cc
@@ -627,15 +627,15 @@ gcd_poly_0( const CanonicalForm & f, const CanonicalForm & g )
C = gcd( Ci, Ci1 );
if ( pi.isUnivariate() && pi1.isUnivariate() )
{
-#ifdef HAVE_FLINT
+/*#ifdef HAVE_FLINT
if (isPurePoly(pi) && isPurePoly(pi1) )
return gcd_univar_flint0(pi, pi1 ) * C;
-#else
+#else*/
#ifdef HAVE_NTL
if ( isOn(SW_USE_NTL_GCD_0) && isPurePoly(pi) && isPurePoly(pi1) )
return gcd_univar_ntl0(pi, pi1 ) * C;
#endif
-#endif
+//#endif
return gcd_poly_univar0( pi, pi1, true ) * C;
}
else if ( gcd_test_one( pi1, pi, true ) )
--
an open source computer algebra system
More information about the debian-science-commits
mailing list