Merge pull request #2023 from KLayout/bugfix/issue-2020

Fixing the strict weak ordering issue inside the edge processor
This commit is contained in:
Matthias Köfferlein 2025-04-27 14:34:37 +02:00 committed by GitHub
commit d8a13037a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1321,7 +1321,7 @@ struct edge_xmin_at_yinterval_double_compare
{
if (edge_xmax (a) < edge_xmin (b)) {
return true;
} else if (edge_xmin (a) >= edge_xmax (b)) {
} else if (edge_xmin (a) > edge_xmax (b)) {
return false;
} else {
C xa = edge_xmin_at_yinterval_double (a, m_y1, m_y2);