@@ -201,11 +201,11 @@ mutable struct P4estInterfaceContainer{NDIMS, uEltype <: Real, NDIMSP2,
201201 uArray <: DenseArray{uEltype, NDIMSP2} ,
202202 IdsMatrix <: DenseMatrix{Int} ,
203203 IndicesMatrix < :
204- DenseMatrix{NTuple{NDIMS, IndexInfo }},
204+ DenseMatrix{NTuple{NDIMS, Symbol }},
205205 uVector <: DenseVector{uEltype} ,
206206 IdsVector <: DenseVector{Int} ,
207207 IndicesVector < :
208- DenseVector{NTuple{NDIMS, IndexInfo }},
208+ DenseVector{NTuple{NDIMS, Symbol }},
209209 ArrayType, Bool} < :
210210 AbstractHeterogeneousContainer{ArrayType, Bool}
211211 u:: uArray # [primary/secondary, variable, i, j, interface]
@@ -270,7 +270,7 @@ function init_interfaces(mesh::Union{P4estMesh, T8codeMesh}, equations, basis, e
270270 _neighbor_ids = Vector {Int} (undef, 2 * n_interfaces)
271271 neighbor_ids = unsafe_wrap (Array, pointer (_neighbor_ids), (2 , n_interfaces))
272272
273- _node_indices = Vector {NTuple{NDIMS, IndexInfo }} (undef, 2 * n_interfaces)
273+ _node_indices = Vector {NTuple{NDIMS, Symbol }} (undef, 2 * n_interfaces)
274274 node_indices = unsafe_wrap (Array, pointer (_node_indices), (2 , n_interfaces))
275275
276276 interfaces = P4estInterfaceContainer{NDIMS, uEltype, NDIMS + 2 ,
@@ -328,7 +328,7 @@ mutable struct P4estBoundaryContainer{NDIMS, uEltype <: Real, NDIMSP1,
328328 uArray <: DenseArray{uEltype, NDIMSP1} ,
329329 IdsVector <: DenseVector{Int} ,
330330 IndicesVector < :
331- DenseVector{NTuple{NDIMS, IndexInfo }},
331+ DenseVector{NTuple{NDIMS, Symbol }},
332332 uVector <: DenseVector{uEltype} , ArrayType,
333333 Bool} < :
334334 AbstractHeterogeneousContainer{ArrayType, Bool}
@@ -389,7 +389,7 @@ function init_boundaries(mesh::Union{P4estMesh, T8codeMesh}, equations, basis, e
389389 n_boundaries))
390390
391391 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)
393393 names = Vector {Symbol} (undef, n_boundaries)
394394
395395 boundaries = P4estBoundaryContainer{NDIMS, uEltype, NDIMS + 1 , typeof (u),
@@ -491,11 +491,11 @@ mutable struct P4estMortarContainer{NDIMS, uEltype <: Real, NDIMSP1, NDIMSP3,
491491 uArray <: DenseArray{uEltype, NDIMSP3} ,
492492 IdsMatrix <: DenseMatrix{Int} ,
493493 IndicesMatrix < :
494- DenseMatrix{NTuple{NDIMS, IndexInfo }},
494+ DenseMatrix{NTuple{NDIMS, Symbol }},
495495 uVector <: DenseVector{uEltype} ,
496496 IdsVector <: DenseVector{Int} ,
497497 IndicesVector < :
498- DenseVector{NTuple{NDIMS, IndexInfo }},
498+ DenseVector{NTuple{NDIMS, Symbol }},
499499 ArrayType, Bool} < :
500500 AbstractHeterogeneousContainer{ArrayType, Bool}
501501 u:: uArray # [small/large side, variable, position, i, j, mortar]
@@ -558,8 +558,8 @@ function init_mortars(mesh::Union{P4estMesh, T8codeMesh}, equations, basis, elem
558558 neighbor_ids = unsafe_wrap (Array, pointer (_neighbor_ids),
559559 (2 ^ (NDIMS - 1 ) + 1 , n_mortars))
560560
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))
563563
564564 mortars = P4estMortarContainer{NDIMS, uEltype, NDIMS + 1 , NDIMS + 3 , typeof (u),
565565 typeof (neighbor_ids), typeof (node_indices),
0 commit comments