Mercurial > repos > public > sbplib_julia
changeset 33:e8d7137b3f07
Raname apply(DiffOp) to apply!(DiffOp)
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 10 Jan 2019 14:46:15 +0100 |
parents | 64530c07165b |
children | bb841977d198 |
files | diffOp.jl |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
diff -r 64530c07165b -r e8d7137b3f07 diffOp.jl --- a/diffOp.jl Thu Jan 10 14:33:29 2019 +0100 +++ b/diffOp.jl Thu Jan 10 14:46:15 2019 +0100 @@ -1,6 +1,6 @@ abstract type DiffOp end -function apply(D::DiffOp, v::AbstractVector) +function apply!(D::DiffOp, u::AbstractVector, v::AbstractVector) error("not implemented") end