Skip to content

Commit

Permalink
Update model.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-camuto committed Oct 29, 2024
1 parent 693c894 commit b1481da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ impl Model {

let mut symbol_values = SymbolValues::default();
for (symbol, value) in run_args.variables.iter() {
let symbol = model.symbol_table.sym(symbol);
let symbol = model.symbols.sym(symbol);
symbol_values = symbol_values.with(&symbol, *value as i64);
debug!("set {} to {}", symbol, value);
}
Expand Down

0 comments on commit b1481da

Please sign in to comment.