Skip to content

Commit f10e8d2

Browse files
Pass down documented kwargs in structural_simplifiy
I didn't let the tests run because I thought it was a harmless doc change, I missed that these kwargs were pulled out. But at least the failure wasn't released.
1 parent 31059a3 commit f10e8d2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/systems/systems.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ function structural_simplify(
2121
sys::AbstractSystem, io = nothing; simplify = false, split = true,
2222
allow_symbolic = true, allow_parameter = true, conservative = false, fully_determined = true,
2323
kwargs...)
24-
newsys′ = __structural_simplify(sys, io; simplify, kwargs...)
24+
newsys′ = __structural_simplify(sys, io; simplify,
25+
allow_symbolic = true, allow_parameter = true, conservative = false, fully_determined = true,
26+
kwargs...)
2527
if newsys′ isa Tuple
2628
@assert length(newsys′) == 2
2729
newsys = newsys′[1]

0 commit comments

Comments
 (0)