Mercurial > repos > public > sbplib_julia
comparison src/DiffOps/DiffOps.jl @ 341:48f916e12994 refactor/combine_to_one_package
DiffOps.jl: Comment out exporting of apply function
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 25 Sep 2020 14:10:52 +0200 |
parents | f4e3e71a4ff4 |
children | 76e5682d0e52 |
comparison
equal
deleted
inserted
replaced
340:29df39a7b568 | 341:48f916e12994 |
---|---|
86 u = zeros(eltype(v), size(v)) | 86 u = zeros(eltype(v), size(v)) |
87 apply!(D,v,u) | 87 apply!(D,v,u) |
88 return u | 88 return u |
89 end | 89 end |
90 | 90 |
91 export apply | 91 # TODO: This conflicts with LazyTensors. Shouldn't DiffOps be LazyTensorOperators and use that apply? |
92 # export apply | |
93 | |
92 | 94 |
93 """ | 95 """ |
94 A BoundaryCondition should implement the method | 96 A BoundaryCondition should implement the method |
95 sat(::DiffOp, v::AbstractArray, data::AbstractArray, ...) | 97 sat(::DiffOp, v::AbstractArray, data::AbstractArray, ...) |
96 """ | 98 """ |