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

This commit is contained in:
theo-vt
2025-11-15 10:54:56 -05:00
committed by GitHub
parent 8c21a7a53c
commit 4b60f59a10

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()) {