Mercurial > repos > public > sbplib_julia
view AbstractGrid.jl @ 92:b8c9e2db126f stencil_index
New branch for implementing specialized indices used by the diffOps apply functions.
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Mon, 04 Feb 2019 09:11:53 +0100 |
parents | 614b56a017b9 |
children | 631eb9b35d72 |
line wrap: on
line source
abstract type AbstractGrid end function numberOfDimensions(grid::AbstractGrid) error("Not implemented for abstact type AbstractGrid") end function numberOfPoints(grid::AbstractGrid) error("Not implemented for abstact type AbstractGrid") end function points(grid::AbstractGrid) error("Not implemented for abstact type AbstractGrid") end # Evaluate function f on the grid g function evalOn(g::AbstractGrid, f::Function) F(x) = f(x...) return F.(points(g)) end