mirror of https://github.com/CGAL/cgal
Call polynomial_subresultant_with_cofactors instead of internal function
This commit is contained in:
parent
392b7728a7
commit
ceba3c0bd1
|
|
@ -420,7 +420,7 @@ void test_routine() {
|
|||
std::vector<Poly_int1> sres_check,sres,coP,coQ;
|
||||
CGAL::CGALi::prs_polynomial_subresultants<Poly_int1_traits>
|
||||
(f,g,std::back_inserter(sres_check));
|
||||
CGAL::CGALi::prs_subresultants_with_cofactors<Poly_int1_traits>
|
||||
CGAL::polynomial_subresultants_with_cofactors<Poly_int1_traits>
|
||||
(f,g,
|
||||
std::back_inserter(sres),
|
||||
std::back_inserter(coP),
|
||||
|
|
@ -441,7 +441,7 @@ void test_routine() {
|
|||
std::vector<Poly_int3> sres_check,sres,coP,coQ;
|
||||
CGAL::CGALi::prs_polynomial_subresultants<Poly_int3_traits>
|
||||
(f,g,std::back_inserter(sres_check));
|
||||
CGAL::CGALi::prs_subresultants_with_cofactors<Poly_int3_traits>
|
||||
CGAL::polynomial_subresultants_with_cofactors<Poly_int3_traits>
|
||||
(f,g,
|
||||
std::back_inserter(sres),
|
||||
std::back_inserter(coP),
|
||||
|
|
@ -460,7 +460,7 @@ void test_routine() {
|
|||
std::vector<Poly_int2> sres_check,sres,coP,coQ;
|
||||
CGAL::CGALi::prs_polynomial_subresultants<Poly_int2_traits>
|
||||
(f,g,std::back_inserter(sres_check));
|
||||
CGAL::CGALi::prs_subresultants_with_cofactors<Poly_int2_traits>
|
||||
CGAL::polynomial_subresultants_with_cofactors<Poly_int2_traits>
|
||||
(f,g,
|
||||
std::back_inserter(sres),
|
||||
std::back_inserter(coP),
|
||||
|
|
|
|||
Loading…
Reference in New Issue