@@ -201,11 +201,11 @@ mutable struct P4estInterfaceContainer{NDIMS, uEltype <: Real, NDIMSP2,
201
201
uArray <: DenseArray{uEltype, NDIMSP2} ,
202
202
IdsMatrix <: DenseMatrix{Int} ,
203
203
IndicesMatrix < :
204
- DenseMatrix{NTuple{NDIMS, IndexInfo }},
204
+ DenseMatrix{NTuple{NDIMS, Symbol }},
205
205
uVector <: DenseVector{uEltype} ,
206
206
IdsVector <: DenseVector{Int} ,
207
207
IndicesVector < :
208
- DenseVector{NTuple{NDIMS, IndexInfo }},
208
+ DenseVector{NTuple{NDIMS, Symbol }},
209
209
ArrayType, Bool} < :
210
210
AbstractHeterogeneousContainer{ArrayType, Bool}
211
211
u:: uArray # [primary/secondary, variable, i, j, interface]
@@ -270,7 +270,7 @@ function init_interfaces(mesh::Union{P4estMesh, T8codeMesh}, equations, basis, e
270
270
_neighbor_ids = Vector {Int} (undef, 2 * n_interfaces)
271
271
neighbor_ids = unsafe_wrap (Array, pointer (_neighbor_ids), (2 , n_interfaces))
272
272
273
- _node_indices = Vector {NTuple{NDIMS, IndexInfo }} (undef, 2 * n_interfaces)
273
+ _node_indices = Vector {NTuple{NDIMS, Symbol }} (undef, 2 * n_interfaces)
274
274
node_indices = unsafe_wrap (Array, pointer (_node_indices), (2 , n_interfaces))
275
275
276
276
interfaces = P4estInterfaceContainer{NDIMS, uEltype, NDIMS + 2 ,
@@ -328,7 +328,7 @@ mutable struct P4estBoundaryContainer{NDIMS, uEltype <: Real, NDIMSP1,
328
328
uArray <: DenseArray{uEltype, NDIMSP1} ,
329
329
IdsVector <: DenseVector{Int} ,
330
330
IndicesVector < :
331
- DenseVector{NTuple{NDIMS, IndexInfo }},
331
+ DenseVector{NTuple{NDIMS, Symbol }},
332
332
uVector <: DenseVector{uEltype} , ArrayType,
333
333
Bool} < :
334
334
AbstractHeterogeneousContainer{ArrayType, Bool}
@@ -389,7 +389,7 @@ function init_boundaries(mesh::Union{P4estMesh, T8codeMesh}, equations, basis, e
389
389
n_boundaries))
390
390
391
391
neighbor_ids = Vector {Int} (undef, n_boundaries)
392
- node_indices = Vector {NTuple{NDIMS, IndexInfo }} (undef, n_boundaries)
392
+ node_indices = Vector {NTuple{NDIMS, Symbol }} (undef, n_boundaries)
393
393
names = Vector {Symbol} (undef, n_boundaries)
394
394
395
395
boundaries = P4estBoundaryContainer{NDIMS, uEltype, NDIMS + 1 , typeof (u),
@@ -491,11 +491,11 @@ mutable struct P4estMortarContainer{NDIMS, uEltype <: Real, NDIMSP1, NDIMSP3,
491
491
uArray <: DenseArray{uEltype, NDIMSP3} ,
492
492
IdsMatrix <: DenseMatrix{Int} ,
493
493
IndicesMatrix < :
494
- DenseMatrix{NTuple{NDIMS, IndexInfo }},
494
+ DenseMatrix{NTuple{NDIMS, Symbol }},
495
495
uVector <: DenseVector{uEltype} ,
496
496
IdsVector <: DenseVector{Int} ,
497
497
IndicesVector < :
498
- DenseVector{NTuple{NDIMS, IndexInfo }},
498
+ DenseVector{NTuple{NDIMS, Symbol }},
499
499
ArrayType, Bool} < :
500
500
AbstractHeterogeneousContainer{ArrayType, Bool}
501
501
u:: uArray # [small/large side, variable, position, i, j, mortar]
@@ -558,8 +558,8 @@ function init_mortars(mesh::Union{P4estMesh, T8codeMesh}, equations, basis, elem
558
558
neighbor_ids = unsafe_wrap (Array, pointer (_neighbor_ids),
559
559
(2 ^ (NDIMS - 1 ) + 1 , n_mortars))
560
560
561
- _node_indices = Vector {NTuple{NDIMS, IndexInfo }} (undef, 2 * n_mortars)
562
- node_indices = unsafe_wrap (Array, pointer (_node_indices ), (2 , n_mortars))
561
+ _node_indices = Vector {NTuple{NDIMS, Symbol }} (undef, 2 * n_mortars)
562
+ node_indices = unsafe_wrap (Array, pointer (node_indices ), (2 , n_mortars))
563
563
564
564
mortars = P4estMortarContainer{NDIMS, uEltype, NDIMS + 1 , NDIMS + 3 , typeof (u),
565
565
typeof (neighbor_ids), typeof (node_indices),
0 commit comments