Mercurial > repos > public > sbplib_julia
comparison src/Grids/Grids.jl @ 1246:476b889f0ffa refactor/grids
Add missing export statements
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 22 Feb 2023 12:39:42 +0100 |
parents | 783284b3e438 |
children | a4ddae8b5d49 |
comparison
equal
deleted
inserted
replaced
1245:6323d2fe3b4f | 1246:476b889f0ffa |
---|---|
5 | 5 |
6 # Grid | 6 # Grid |
7 export Grid | 7 export Grid |
8 export dims | 8 export dims |
9 export points | 9 export points |
10 export evalOn | 10 |
11 export TensorGrid | |
12 export ZeroDimGrid | |
13 | |
14 export eval_on | |
15 export getcomponent | |
11 | 16 |
12 # BoundaryIdentifier | 17 # BoundaryIdentifier |
13 export BoundaryIdentifier | 18 export BoundaryIdentifier |
14 export CartesianBoundary | 19 export CartesianBoundary |
15 export dim | 20 export dim |
22 export restrict | 27 export restrict |
23 export boundary_identifiers | 28 export boundary_identifiers |
24 export boundary_grid | 29 export boundary_grid |
25 export refine | 30 export refine |
26 export coarsen | 31 export coarsen |
32 export equidistant_grid | |
27 | 33 |
28 abstract type BoundaryIdentifier end | 34 abstract type BoundaryIdentifier end |
29 | 35 |
30 include("grid.jl") | 36 include("grid.jl") |
31 include("tensor_grid.jl") | 37 include("tensor_grid.jl") |