@@ -202,4 +202,43 @@ function __init__()
202
202
end
203
203
end
204
204
205
+ function t8_free (ptr)
206
+ T8code. Libt8. sc_free (t8_get_package_id (), ptr)
207
+ end
208
+
209
+ # Following functions are not part of the official public API of t8code but are
210
+ # needed nevertheless by some application codes. This will be fixed resp. more
211
+ # streamlined in future releases of t8code.
212
+
213
+ export t8_forest_ghost_get_remotes
214
+ function t8_forest_ghost_get_remotes (forest)
215
+ num_remotes_ref = Ref {Cint} ()
216
+ remotes_ptr = @ccall T8code. Libt8. libt8. t8_forest_ghost_get_remotes (forest:: t8_forest_t ,
217
+ num_remotes_ref:: Ptr{Cint} ):: Ptr{Cint}
218
+ remotes = unsafe_wrap (Array, remotes_ptr, num_remotes_ref[])
219
+ end
220
+
221
+ export t8_forest_ghost_remote_first_elem
222
+ function t8_forest_ghost_remote_first_elem (forest, remote)
223
+ @ccall T8code. Libt8. libt8. t8_forest_ghost_remote_first_elem (forest:: t8_forest_t ,
224
+ remote:: Cint ):: t8_locidx_t
225
+ end
226
+
227
+ export t8_forest_ghost_num_trees
228
+ function t8_forest_ghost_num_trees (forest)
229
+ @ccall T8code. Libt8. libt8. t8_forest_ghost_num_trees (forest:: t8_forest_t ):: t8_locidx_t
230
+ end
231
+
232
+ export t8_forest_ghost_get_tree_element_offset
233
+ function t8_forest_ghost_get_tree_element_offset (forest, lghost_tree)
234
+ @ccall T8code. Libt8. libt8. t8_forest_ghost_get_tree_element_offset (forest:: t8_forest_t ,
235
+ lghost_tree:: t8_locidx_t ):: t8_locidx_t
236
+ end
237
+
238
+ export t8_forest_ghost_get_global_treeid
239
+ function t8_forest_ghost_get_global_treeid (forest, lghost_tree)
240
+ @ccall T8code. Libt8. libt8. t8_forest_ghost_get_global_treeid (forest:: t8_forest_t ,
241
+ lghost_tree:: t8_locidx_t ):: t8_gloidx_t
242
+ end
243
+
205
244
end
0 commit comments