Skip to content

Commit 07f8206

Browse files
fix: fix all_symbols not returning dependent parameters
1 parent 322b5db commit 07f8206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/abstractsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ end
824824

825825
function SymbolicIndexingInterface.all_symbols(sys::AbstractSystem)
826826
syms = all_variable_symbols(sys)
827-
for other in (parameter_symbols(sys), independent_variable_symbols(sys))
827+
for other in (full_parameters(sys), independent_variable_symbols(sys))
828828
isempty(other) || (syms = vcat(syms, other))
829829
end
830830
return syms

0 commit comments

Comments
 (0)