Skip to content

Commit

Permalink
more unifications in dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
afabri committed Sep 24, 2024
1 parent e4ed5d1 commit 5754507
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ class Curve_analysis_2 : public ::CGAL::Handle_with_policy< Rep_ > {
void set_event_lines(InputIterator1 event_begin,
InputIterator1 event_end,
InputIterator2 intermediate_begin,
InputIterator2 CGAL_precondition_code(intermediate_end)) const {
InputIterator2 CGAL_assertion_code(intermediate_end)) const {

if(! this->ptr()->event_coordinates) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ class Curve_pair_analysis_2 :
* Checks intersection with symbolic methods
*/
bool check_candidate_symbolically(Status_line_CA_1& e1,size_type ,
Status_line_CA_1& CGAL_precondition_code(e2),size_type ,
Status_line_CA_1& CGAL_assertion_code(e2),size_type ,
size_type k) const {
Polynomial_1 p = -coprincipal_subresultants(k-1);
Polynomial_1 q = principal_subresultants(k)*Coefficient(k);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ template < class PolynomialIterator,
int gen_agebraic_reals_with_mults( PolynomialIterator fac,
PolynomialIterator fac_end,
IntIterator mul,
IntIterator CGAL_precondition_code(mul_end),
IntIterator CGAL_assertion_code(mul_end),
AlgebraicRealOutputIterator oi_root,
IntOutputIterator oi_mult){

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ class Status_line_CPA_1 :
const typename Curve_pair_analysis_2
::Curve_analysis_2& c1,
const typename Curve_pair_analysis_2
::Curve_analysis_2& CGAL_precondition_code(c2)) const
::Curve_analysis_2& CGAL_assertion_code(c2)) const
{

CGAL_precondition(0 <= j && j < number_of_events());
Expand Down

0 comments on commit 5754507

Please sign in to comment.