From 275581537b51db6272e43ac86908d23a1b46ed59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Pe=C3=B1aranda?= Date: Tue, 18 Oct 2016 12:57:49 -0300 Subject: [PATCH] CGAL_NO_ASSERTIONS -> CGAL_NO_PRECONDITIONS --- Algebraic_kernel_d/include/CGAL/RS/rs3_k_refiner_1.h | 8 ++++---- Algebraic_kernel_d/include/CGAL/RS/rs3_refiner_1.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Algebraic_kernel_d/include/CGAL/RS/rs3_k_refiner_1.h b/Algebraic_kernel_d/include/CGAL/RS/rs3_k_refiner_1.h index 195e5bb9c15..e9d6457ca30 100644 --- a/Algebraic_kernel_d/include/CGAL/RS/rs3_k_refiner_1.h +++ b/Algebraic_kernel_d/include/CGAL/RS/rs3_k_refiner_1.h @@ -28,7 +28,7 @@ #include "Gmpfr_make_unique.h" // If we want assertions, we need to evaluate. -#ifndef CGAL_NO_ASSERTIONS +#ifndef CGAL_NO_PRECONDITIONS #include "signat_1.h" #endif @@ -57,7 +57,7 @@ operator() typedef Polynomial_traits_d Ptraits; typedef Ptraits::Degree Degree; CGAL_precondition(left<=right); -#ifndef CGAL_NO_ASSERTIONS +#ifndef CGAL_NO_PRECONDITIONS typedef Ptraits::Make_square_free Sfpart; typedef CGAL::RS_AK1::Signat_1 Signat; @@ -111,7 +111,7 @@ operator() typedef Polynomial_traits_d ZPtraits; typedef ZPtraits::Degree ZDegree; CGAL_precondition(left<=right); -#ifndef CGAL_NO_ASSERTIONS +#ifndef CGAL_NO_PRECONDITIONS typedef ZPtraits::Make_square_free ZSfpart; typedef CGAL::RS_AK1::Signat_1 Signat; @@ -120,7 +120,7 @@ operator() Polynomial zpol=CGAL::RS_AK1::Polynomial_converter_1< CGAL::Polynomial, CGAL::Polynomial >()(qpol); -#ifndef CGAL_NO_ASSERTIONS +#ifndef CGAL_NO_PRECONDITIONS ZPolynomial zsfpp=ZSfpart()(zpol); Signat signof(zsfpp); CGAL::Sign sl=signof(left); diff --git a/Algebraic_kernel_d/include/CGAL/RS/rs3_refiner_1.h b/Algebraic_kernel_d/include/CGAL/RS/rs3_refiner_1.h index 62fdcaae1fe..29d3756543d 100644 --- a/Algebraic_kernel_d/include/CGAL/RS/rs3_refiner_1.h +++ b/Algebraic_kernel_d/include/CGAL/RS/rs3_refiner_1.h @@ -27,7 +27,7 @@ #include "Gmpfr_make_unique.h" // If we want assertions, we need to evaluate. -#ifndef CGAL_NO_ASSERTIONS +#ifndef CGAL_NO_PRECONDITIONS #include "signat_1.h" #endif @@ -56,7 +56,7 @@ operator() typedef Polynomial_traits_d Ptraits; typedef Ptraits::Degree Degree; CGAL_precondition(left<=right); -#ifndef CGAL_NO_ASSERTIONS +#ifndef CGAL_NO_PRECONDITIONS typedef Ptraits::Make_square_free Sfpart; typedef CGAL::RS_AK1::Signat_1 Signat; @@ -116,7 +116,7 @@ operator() typedef Polynomial_traits_d ZPtraits; typedef ZPtraits::Degree ZDegree; CGAL_precondition(left<=right); -#ifndef CGAL_NO_ASSERTIONS +#ifndef CGAL_NO_PRECONDITIONS typedef ZPtraits::Make_square_free ZSfpart; typedef CGAL::RS_AK1::Signat_1 Signat; @@ -126,7 +126,7 @@ operator() Polynomial zpol=CGAL::RS_AK1::Polynomial_converter_1< CGAL::Polynomial, CGAL::Polynomial >()(qpol); -#ifndef CGAL_NO_ASSERTIONS +#ifndef CGAL_NO_PRECONDITIONS ZPolynomial zsfpp=ZSfpart()(zpol); Signat signof(zsfpp); CGAL::Sign sl=signof(left);