Sketcher.planegcs: solve reference constraints with lower priority (#25318)

(cherry picked from commit d4bfa82161)
This commit is contained in:
theo-vt
2025-11-15 10:08:53 -06:00
committed by Chris Hennes
parent a60b4698be
commit 647877384a
+1 -1
View File
@@ -1830,7 +1830,7 @@ void System::initSolution(Algorithm alg)
clists[cid],
std::back_inserter(clist0),
std::back_inserter(clist1),
[](auto constr) { return constr->getTag() >= 0; }
[](auto constr) { return constr->getTag() >= 0 && constr->isDriving(); }
);
if (!clist0.empty()) {