From b1481dab694b52020fd4efc3ba645b2d02212aca Mon Sep 17 00:00:00 2001 From: dante <45801863+alexander-camuto@users.noreply.github.com> Date: Tue, 29 Oct 2024 12:01:29 -0400 Subject: [PATCH] Update model.rs --- src/graph/model.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph/model.rs b/src/graph/model.rs index eb89344ad..a1b22445f 100644 --- a/src/graph/model.rs +++ b/src/graph/model.rs @@ -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); }