Included Macro to give error message 'at the right position'

This commit is contained in:
Michael Kerber 2009-03-19 16:17:01 +00:00
parent ceba3c0bd1
commit b040a513e9
1 changed files with 17 additions and 0 deletions

View File

@ -616,6 +616,23 @@ CGAL_BEGIN_NAMESPACE
(P,Q,sres_out,coP_out,coQ_out); (P,Q,sres_out,coP_out,coQ_out);
} }
template<typename Polynomial_traits_d,
typename OutputIterator1,
typename OutputIterator2,
typename OutputIterator3>
OutputIterator1 polynomial_subresultants_with_cofactors_
(typename Polynomial_traits_d::Polynomial_d P,
typename Polynomial_traits_d::Polynomial_d Q,
OutputIterator1 sres_out,
OutputIterator2 coP_out,
OutputIterator3 coQ_out,
CGAL::Integral_domain_without_division_tag) {
// polynomial_subresultants_with_cofactors requires
// a model of IntegralDomain as coefficient type;
BOOST_STATIC_ASSERT(sizeof(Polynomial_traits_d)==0);
return sres_out;
}
template<typename Polynomial_traits_d, template<typename Polynomial_traits_d,
typename OutputIterator1, typename OutputIterator1,
typename OutputIterator2, typename OutputIterator2,