changeset 166:89b63bdf1ea8 boundary_conditions

Remove obsolete function definitions
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 21 May 2019 13:37:38 +0200
parents 9fc9167e9a4c
children 074cb898f24e
files diffOp.jl
diffstat 1 files changed, 0 insertions(+), 32 deletions(-) [+]
line wrap: on
line diff
--- a/diffOp.jl	Tue May 21 11:40:21 2019 +0200
+++ b/diffOp.jl	Tue May 21 13:37:38 2019 +0200
@@ -160,38 +160,6 @@
 
 end
 
-
-# Boundary operators
-
-function apply_e(L::Laplace{2}, v::AbstractArray{T,2} where T, ::CartesianBoundary{1,R}, j::Int) where R
-    @inbounds vy = view(v, :, j)
-    return apply_e(L.op,vy, R)
-end
-
-function apply_e(L::Laplace{2}, v::AbstractArray{T,2} where T, ::CartesianBoundary{2,R}, i::Int) where R
-    @inbounds vx = view(v, i, :)
-    return apply_e(L.op, vy, R)
-end
-
-function apply_d(L::Laplace{2}, v::AbstractArray{T,2} where T, ::CartesianBoundary{1,R}, j::Int) where R
-    @inbounds vy = view(v, :, j)
-    return apply_d(L.op,vy, R)
-end
-
-function apply_d(L::Laplace{2}, v::AbstractArray{T,2} where T, ::CartesianBoundary{2,R}, i::Int) where R
-    @inbounds vx = view(v, i, :)
-    return apply_d(L.op, vy, R)
-end
-
-
-function apply_e_T(L::Laplace{2}, v::AbstractArray{T,2} where T, boundaryId, i::Int)
-
-end
-
-function apply_d_T(L::Laplace{2}, v::AbstractArray{T,2} where T, boundaryId, i::Int)
-
-end
-
 """
 A BoundaryCondition should implement the method
     sat(::DiffOp, v::AbstractArray, data::AbstractArray, ...)