diff --git a/test/utility_tests.jl b/test/utility_tests.jl index 50815468..f55a48c3 100644 --- a/test/utility_tests.jl +++ b/test/utility_tests.jl @@ -1,7 +1,14 @@ using StochasticDiffEq, LinearAlgebra, SparseArrays, Random, LinearSolve, Test using StochasticDiffEq.OrdinaryDiffEq: WOperator, calc_W!, calc_W using StochasticDiffEq.SciMLOperators: MatrixOperator +using OrdinaryDiffEq +#horid nasty hack to deal with temporary calc_W refactor +# if there is a method that takes a W_transform argument, define the version that doesn't to set W_transform to true +if hasmethod(calc_W, (Any, Any, Any, Any, Any)) + OrdinaryDiffEq.calc_W(integ, nlsolver, dgamma, repeat_step::Bool) = OrdinaryDiffEq.calc_W(integ, nlsolver, dgamma, repeat_step, true) + OrdinaryDiffEq.calc_W!(integ, nlsolver, cache, dgamma, repeat_step::Bool) = OrdinaryDiffEq.calc_W(integ, nlsolver, dgamma, cacherepeat_step, true) +end @testset "Derivative Utilities" begin @testset "calc_W!" begin A = [-1.0 0.0; 0.0 -0.5]; σ = [0.9 0.0; 0.0 0.8]