Mercurial > repos > public > sbplib_julia
diff AbstractGrid.jl @ 124:631eb9b35d72 cell_based_test
Make grid spacing a property of EquidistantGrid. Create plotting module for sbplib.
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Wed, 13 Feb 2019 10:37:52 +0100 |
parents | 614b56a017b9 |
children |
line wrap: on
line diff
--- a/AbstractGrid.jl Tue Feb 12 15:18:18 2019 +0100 +++ b/AbstractGrid.jl Wed Feb 13 10:37:52 2019 +0100 @@ -1,10 +1,6 @@ abstract type AbstractGrid end -function numberOfDimensions(grid::AbstractGrid) - error("Not implemented for abstact type AbstractGrid") -end - -function numberOfPoints(grid::AbstractGrid) +function dimension(grid::AbstractGrid) error("Not implemented for abstact type AbstractGrid") end