Skip to content

Commit 406d0a8

Browse files
committed
fix parse error
1 parent ae19eeb commit 406d0a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/structural_transformation/symbolics_tearing.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ function generate_derivative_variables!(ts::TearingState, neweqs, var_eq_matchin
390390

391391
dx = fullvars[dv]
392392
order, lv = var_order(dv, diff_to_var)
393-
x_t = is_discrete ? lower_shift_varname_with_unit(fullvars[dv], iv)
394-
: lower_varname_with_unit(fullvars[lv], iv, order)
393+
x_t = is_discrete ? lower_shift_varname_with_unit(fullvars[dv], iv) :
394+
lower_varname_with_unit(fullvars[lv], iv, order)
395395

396396
# Add `x_t` to the graph
397397
v_t = add_dd_variable!(structure, fullvars, x_t, dv)

0 commit comments

Comments
 (0)