From f10e8d20a793f117ef04561cd05e701f997c2bee Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 21 Jul 2024 18:44:52 -0400 Subject: [PATCH] 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. --- src/systems/systems.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/systems/systems.jl b/src/systems/systems.jl index 2ac0c3d5d7..fd392b696b 100644 --- a/src/systems/systems.jl +++ b/src/systems/systems.jl @@ -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]