Mercurial > repos > public > sbplib_julia
comparison AbstractGrid.jl @ 134:79699dda29be
Merge in cell_based_test
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 21 Feb 2019 16:27:28 +0100 |
parents | 631eb9b35d72 |
children |
comparison
equal
deleted
inserted
replaced
84:48079bd39969 | 134:79699dda29be |
---|---|
1 abstract type AbstractGrid end | 1 abstract type AbstractGrid end |
2 | 2 |
3 function numberOfDimensions(grid::AbstractGrid) | 3 function dimension(grid::AbstractGrid) |
4 error("Not implemented for abstact type AbstractGrid") | |
5 end | |
6 | |
7 function numberOfPoints(grid::AbstractGrid) | |
8 error("Not implemented for abstact type AbstractGrid") | 4 error("Not implemented for abstact type AbstractGrid") |
9 end | 5 end |
10 | 6 |
11 function points(grid::AbstractGrid) | 7 function points(grid::AbstractGrid) |
12 error("Not implemented for abstact type AbstractGrid") | 8 error("Not implemented for abstact type AbstractGrid") |