Skip to content

Commit 8409bff

Browse files
update for diffEq exports
1 parent f3594a6 commit 8409bff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/maketype.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function maketype(name,param_dict,origex,funcs,syms,fex;
2121
param_symjac=Matrix{SymEngine.Basic}(0,0),
2222
param_Jex=:())
2323

24-
typeex = :(mutable struct $name <: AbstractParameterizedFunction{true}
24+
typeex = :(mutable struct $name <: DiffEqBase.AbstractParameterizedFunction{true}
2525
origex::Expr
2626
funcs::Vector{Expr}
2727
symfuncs::Vector{SymEngine.Basic}

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ f_t = @ode_def_nohes SymCheck begin # Checks for error due to symbol on 1
1111
dy = -c*y + d*x*y*t^2
1212
end a b c d
1313

14-
@test has_syms(f_t)
14+
@test DiffEqBase.__has_syms(f_t)
1515

1616
f_t2 = @ode_def_noinvjac SymCheck2 begin # Checks for error due to symbol on 1
1717
dx = 1

0 commit comments

Comments
 (0)