From e6e0ba01b251d960d003a665a0bf04966daa1c30 Mon Sep 17 00:00:00 2001 From: Balazs Komuves Date: Sat, 13 Jun 2026 14:22:36 +0200 Subject: [PATCH] move the group_fft module to be more consistent --- bench/bench_fft.nim | 2 +- groth16/{dynamic => math}/group_fft.nim | 0 tests/groth16/testFFT.nim | 3 +-- 3 files changed, 2 insertions(+), 3 deletions(-) rename groth16/{dynamic => math}/group_fft.nim (100%) diff --git a/bench/bench_fft.nim b/bench/bench_fft.nim index e3d2d6c..2dcbe4e 100644 --- a/bench/bench_fft.nim +++ b/bench/bench_fft.nim @@ -16,7 +16,7 @@ import groth16/bn128/arrays import groth16/math/domain import groth16/math/ntt -import groth16/dynamic/group_fft +import groth16/math/group_fft import shared diff --git a/groth16/dynamic/group_fft.nim b/groth16/math/group_fft.nim similarity index 100% rename from groth16/dynamic/group_fft.nim rename to groth16/math/group_fft.nim diff --git a/tests/groth16/testFFT.nim b/tests/groth16/testFFT.nim index 56c23d6..3e81ae6 100644 --- a/tests/groth16/testFFT.nim +++ b/tests/groth16/testFFT.nim @@ -15,8 +15,7 @@ import groth16/bn128/arrays import groth16/math/domain import groth16/math/ntt - -import groth16/dynamic/group_fft +import groth16/math/group_fft #-------------------------------------------------------------------------------