Implemented a QuadTree and a test

This commit is contained in:
vegowotenks 2025-02-28 17:50:36 +01:00
parent a569dd05a6
commit 87f592ea8b
4 changed files with 519 additions and 1 deletions

View file

@ -52,3 +52,11 @@ target_link_libraries(Subprocess-test
pointers
allocator-interface
)
add_executable(QuadTree-test QuadTree.test.c)
target_link_libraries(QuadTree-test
QuadTree
rand
pointers
allocator-interface
)