Skip to content

Commit 1da87a0

Browse files
committed
add a basic preparation concept
1 parent d5d569b commit 1da87a0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/preparations/preparations.jl

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
abstract type AbstractPreparation end
2+
3+
abstract type AbstractPreparationTrait end
4+
5+
function preptrait end
6+
7+
const PrepTuple = Tuple{Vararg{<: AbstractPreparation}}
8+
9+
struct SpatialIndex{IndexType} <: AbstractPreparation
10+
index::IndexType
11+
end
12+
13+
struct SpatialEdgeIndex{IndexType} <: AbstractPreparation
14+
index::IndexType
15+
end
16+

0 commit comments

Comments
 (0)