Commit 891085b7 authored by Chinmay Garde's avatar Chinmay Garde

Allow updating external variables from the solver

parent d4a67499
...@@ -140,7 +140,17 @@ class Solver { ...@@ -140,7 +140,17 @@ class Solver {
return _dualOptimize(); return _dualOptimize();
} }
void updateVariable() {} void updateVariable() {
for (Variable variable in _vars.keys) {
Symbol symbol = _vars[variable];
Row row = _rows[symbol];
if (row == null) {
variable.value = 0.0;
} else {
variable.value = row.constant;
}
}
}
Solver operator <<(Constraint c) => this..addConstraint(c); Solver operator <<(Constraint c) => this..addConstraint(c);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment