mirror of https://github.com/CGAL/cgal
debug messages for d1, d2 in field_new
This commit is contained in:
parent
9c01d34d35
commit
9f2f5bfbb2
|
|
@ -1792,6 +1792,8 @@ private:
|
|||
if ( certainly(d1 == NEGATIVE) ) { return NEGATIVE; }
|
||||
if ( !is_certain(d1 == NEGATIVE) ) { return indeterminate<Sign>(); }
|
||||
|
||||
std::cout << "debug incircle_xxxs d1=" << d1 << std::endl;
|
||||
|
||||
bool is_p_ttrg(false);
|
||||
if ( is_p_point and same_points(p, t.target_site()) ) {
|
||||
is_p_ttrg = true;
|
||||
|
|
@ -1815,6 +1817,8 @@ private:
|
|||
if ( certainly( d2 == NEGATIVE ) ) { return NEGATIVE; }
|
||||
if ( !is_certain( d2 == NEGATIVE ) ) { return indeterminate<Sign>(); }
|
||||
|
||||
std::cout << "debug incircle_xxxs d2=" << d2 << std::endl;
|
||||
|
||||
CGAL_assertion(numendpts_of_t < 2);
|
||||
|
||||
std::cout << "debug incircle_xxxs numendpts_of_t= "
|
||||
|
|
|
|||
Loading…
Reference in New Issue