Skip to content

Commit

Permalink
Pass down documented kwargs in structural_simplifiy
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ChrisRackauckas authored Jul 21, 2024
1 parent 31059a3 commit f10e8d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/systems/systems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ function structural_simplify(
sys::AbstractSystem, io = nothing; simplify = false, split = true,
allow_symbolic = true, allow_parameter = true, conservative = false, fully_determined = true,
kwargs...)
newsys′ = __structural_simplify(sys, io; simplify, kwargs...)
newsys′ = __structural_simplify(sys, io; simplify,
allow_symbolic = true, allow_parameter = true, conservative = false, fully_determined = true,
kwargs...)
if newsys′ isa Tuple
@assert length(newsys′) == 2
newsys = newsys′[1]
Expand Down

0 comments on commit f10e8d2

Please sign in to comment.