Skip to content

Commit 0a790ad

Browse files
jmarkJohannes Markert
and
Johannes Markert
authored
Add non-public API functions. (#51)
* Added non-public API functions. * Raised patch version. * Added exports. --------- Co-authored-by: Johannes Markert <[email protected]>
1 parent 4e3bfca commit 0a790ad

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "T8code"
22
uuid = "d0cc0030-9a40-4274-8435-baadcfd54fa1"
33
authors = ["Johannes Markert <[email protected]>"]
4-
version = "0.5.1"
4+
version = "0.5.2"
55

66
[deps]
77
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"

src/T8code.jl

+39
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,43 @@ function __init__()
202202
end
203203
end
204204

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+
205244
end

0 commit comments

Comments
 (0)