Skip to content

Commit 60d176e

Browse files
param -> abstractparam
1 parent 525fb3e commit 60d176e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ An example of explicitly defining a parameterized function is as follows. This s
207207
as a general template for doing so:
208208

209209
```julia
210-
type LotkaVolterra <: ParameterizedFunction
210+
type LotkaVolterra <: AbstractParameterizedFunction
211211
a::Float64
212212
b::Float64
213213
end

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-
@eval type $name <: ParameterizedFunction
24+
@eval type $name <: AbstractParameterizedFunction
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
@@ -27,7 +27,7 @@ f_2 = @ode_def_nohes LotkaVolterra3 begin
2727
dy = -c*y + d*x*y
2828
end a=>1.5 b=>1 c=>3 d=1
2929

30-
type LotkaVolterra2 <: ParameterizedFunction
30+
type LotkaVolterra2 <: AbstractParameterizedFunction
3131
a::Float64
3232
b::Int64
3333
end

0 commit comments

Comments
 (0)