Skip to content
Snippets Groups Projects
Commit 3e84351a authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Added a new example that solves Poisson's equation using the fast multipole...

Added a new example that solves Poisson's equation using the fast multipole method instead of the normal Barnes-Hut algorithm
parent a4c55c9f
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ AM_CFLAGS = -g -O3 -Wall -Werror -I../src -ffast-math -fstrict-aliasing \
AM_LDFLAGS = -lm # -fsanitize=address
# Set-up the library
bin_PROGRAMS = test test_qr test_bh test_bh_sorted
bin_PROGRAMS = test test_qr test_bh test_bh_sorted test_fmm_sorted
# Sources for test
test_SOURCES = test.c
......@@ -53,3 +53,8 @@ test_bh_sorted_SOURCES = test_bh_sorted.c
test_bh_sorted_CFLAGS = $(AM_CFLAGS)
test_bh_sorted_LDADD = ../src/.libs/libquicksched.a
# Sources for test_fmm_sorted
test_fmm_sorted_SOURCES = test_fmm_sorted.c
test_fmm_sorted_CFLAGS = $(AM_CFLAGS)
test_fmm_sorted_LDADD = ../src/.libs/libquicksched.a
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment