mirror of https://github.com/KLayout/klayout.git
Small update: code patch for fixing debug output
This commit is contained in:
parent
261584243d
commit
c1e0b1a40b
|
|
@ -1521,7 +1521,11 @@ get_intersections_per_band_any (std::vector <CutPoints> &cutpoints, std::vector
|
|||
bool on_edge = is_point_on_exact (*cc, *wp);
|
||||
cc->make_cutpoints (cutpoints)->add (*wp, &cutpoints, !on_edge);
|
||||
#ifdef DEBUG_EDGE_PROCESSOR
|
||||
printf ("intersection point %s gives strong cutpoint in %s.\n", wp->first.to_string ().c_str (), cc->to_string ().c_str ());
|
||||
if (!on_edge) {
|
||||
printf ("intersection point %s gives strong cutpoint in %s.\n", wp->to_string ().c_str (), cc->to_string ().c_str ());
|
||||
} else {
|
||||
printf ("intersection point %s gives weak cutpoint in %s.\n", wp->to_string ().c_str (), cc->to_string ().c_str ());
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue