Fixing the strict weak ordering issue inside the edge processor

This commit is contained in:
Matthias Koefferlein 2025-04-09 23:35:09 +02:00
parent 449a9a968e
commit fa618a5b76
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);