Skip to content

Commit ef0050c

Browse files
committed
Fix equations being created for frozen multi pin side
1 parent 633f809 commit ef0050c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ficsit-companion/src/app.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -850,12 +850,12 @@ bool App::UpdateNodesRate(const Pin* constraint_pin, const FractionalNumber& con
850850
// for the unlocked pins that don't have their own constraint
851851
for (const auto& p : multi_pin)
852852
{
853-
process_link(p.get());
854-
if (multi_pin_constrained.find(p.get()) != multi_pin_constrained.end())
853+
if (p->GetLocked())
855854
{
856855
continue;
857856
}
858-
if (p->GetLocked())
857+
process_link(p.get());
858+
if (multi_pin_constrained.find(p.get()) != multi_pin_constrained.end())
859859
{
860860
continue;
861861
}

0 commit comments

Comments
 (0)