Mercurial > repos > public > sbplib_julia
comparison src/Grids/AbstractGrid.jl @ 723:c16abc564b82 feature/laplace_opset
Change from EquidistantGrid to AbstractGrid in Laplace interface
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Wed, 17 Mar 2021 10:20:05 +0100 |
parents | 01b851161018 |
children | fc57804c9bf4 |
comparison
equal
deleted
inserted
replaced
722:0402b9042adc | 723:c16abc564b82 |
---|---|
5 dimension(grid::AbstractGrid) | 5 dimension(grid::AbstractGrid) |
6 points(grid::AbstractGrid) | 6 points(grid::AbstractGrid) |
7 | 7 |
8 """ | 8 """ |
9 abstract type AbstractGrid end | 9 abstract type AbstractGrid end |
10 | 10 export AbstractGrid |
11 function dimension end | 11 function dimension end |
12 function points end | 12 function points end |
13 export dimension, points | 13 export dimension, points |
14 | 14 |
15 """ | 15 """ |