Mercurial > repos > public > sbplib_julia
comparison src/Grids/AbstractGrid.jl @ 970:a52bd2f1126c
Merge feature/laplace_opset
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Mon, 14 Mar 2022 15:58:26 +0100 |
parents | c16abc564b82 |
children | fc57804c9bf4 |
comparison
equal
deleted
inserted
replaced
967:84ca744f2f06 | 970:a52bd2f1126c |
---|---|
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 """ |