├── .appveyor.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Doxyfile ├── LICENSE ├── Make.inc ├── Makefile ├── README.md ├── docs ├── docs.doc └── logo.png ├── examples ├── additiontheorem.c ├── annulus.c ├── calculus.c ├── holomorphic.c ├── nonlocaldiffusion.c ├── spinweighted.c └── subspaceangles.c ├── src ├── banded_source.c ├── banded_source.h ├── blockbanded_source.c ├── blockbanded_source.h ├── dprk_source.c ├── dprk_source.h ├── drivers.c ├── drop_precision.c ├── drop_precision.h ├── elliptic_source.c ├── elliptic_source.h ├── fasttransforms.h ├── fftw.c ├── fmm.c ├── fmm.h ├── fmm_source.c ├── fmm_source.h ├── ftinternal.h ├── ftutilities.c ├── ftutilities.h ├── ftutilities_source.c ├── ftutilities_source.h ├── helmholtzhodge.c ├── hierarchical_source.c ├── hierarchical_source.h ├── isometries.c ├── permute.c ├── permute │ ├── permute.h │ ├── permute_AVX.c │ ├── permute_AVX512F.c │ ├── permute_NEON.c │ ├── permute_SSE.c │ ├── permute_SSE2.c │ └── permute_default.c ├── recurrence.c ├── recurrence │ ├── recurrence.h │ ├── recurrence_AVX.c │ ├── recurrence_AVX512F.c │ ├── recurrence_AVX_FMA.c │ ├── recurrence_NEON.c │ ├── recurrence_SSE.c │ ├── recurrence_SSE2.c │ └── recurrence_default.c ├── rotations.c ├── rotations │ ├── rotations.h │ ├── rotations_AVX.c │ ├── rotations_AVX512F.c │ ├── rotations_AVX_FMA.c │ ├── rotations_NEON.c │ ├── rotations_SSE2.c │ └── rotations_default.c ├── tdc.c ├── tdc.h ├── tdc_source.c ├── tdc_source.h ├── transforms.c ├── transforms_mpfr.c ├── transforms_source.c ├── tridiagonal_source.c └── tridiagonal_source.h └── test ├── test_banded.c ├── test_banded_source.c ├── test_dprk.c ├── test_dprk_source.c ├── test_drivers.c ├── test_elliptic.c ├── test_elliptic_source.c ├── test_fftw.c ├── test_fmm.c ├── test_fmm_source.c ├── test_helmholtzhodge.c ├── test_hierarchical.c ├── test_hierarchical_source.c ├── test_isometries.c ├── test_permute.c ├── test_recurrence.c ├── test_rotations.c ├── test_tdc.c ├── test_tdc_source.c ├── test_tdc_source2.c ├── test_transforms.c ├── test_transforms_mpfr.c ├── test_transforms_source.c ├── test_tridiagonal.c └── test_tridiagonal_source.c /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/LICENSE -------------------------------------------------------------------------------- /Make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/Make.inc -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/README.md -------------------------------------------------------------------------------- /docs/docs.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/docs/docs.doc -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/docs/logo.png -------------------------------------------------------------------------------- /examples/additiontheorem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/examples/additiontheorem.c -------------------------------------------------------------------------------- /examples/annulus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/examples/annulus.c -------------------------------------------------------------------------------- /examples/calculus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/examples/calculus.c -------------------------------------------------------------------------------- /examples/holomorphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/examples/holomorphic.c -------------------------------------------------------------------------------- /examples/nonlocaldiffusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/examples/nonlocaldiffusion.c -------------------------------------------------------------------------------- /examples/spinweighted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/examples/spinweighted.c -------------------------------------------------------------------------------- /examples/subspaceangles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/examples/subspaceangles.c -------------------------------------------------------------------------------- /src/banded_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/banded_source.c -------------------------------------------------------------------------------- /src/banded_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/banded_source.h -------------------------------------------------------------------------------- /src/blockbanded_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/blockbanded_source.c -------------------------------------------------------------------------------- /src/blockbanded_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/blockbanded_source.h -------------------------------------------------------------------------------- /src/dprk_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/dprk_source.c -------------------------------------------------------------------------------- /src/dprk_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/dprk_source.h -------------------------------------------------------------------------------- /src/drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/drivers.c -------------------------------------------------------------------------------- /src/drop_precision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/drop_precision.c -------------------------------------------------------------------------------- /src/drop_precision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/drop_precision.h -------------------------------------------------------------------------------- /src/elliptic_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/elliptic_source.c -------------------------------------------------------------------------------- /src/elliptic_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/elliptic_source.h -------------------------------------------------------------------------------- /src/fasttransforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/fasttransforms.h -------------------------------------------------------------------------------- /src/fftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/fftw.c -------------------------------------------------------------------------------- /src/fmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/fmm.c -------------------------------------------------------------------------------- /src/fmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/fmm.h -------------------------------------------------------------------------------- /src/fmm_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/fmm_source.c -------------------------------------------------------------------------------- /src/fmm_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/fmm_source.h -------------------------------------------------------------------------------- /src/ftinternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/ftinternal.h -------------------------------------------------------------------------------- /src/ftutilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/ftutilities.c -------------------------------------------------------------------------------- /src/ftutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/ftutilities.h -------------------------------------------------------------------------------- /src/ftutilities_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/ftutilities_source.c -------------------------------------------------------------------------------- /src/ftutilities_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/ftutilities_source.h -------------------------------------------------------------------------------- /src/helmholtzhodge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/helmholtzhodge.c -------------------------------------------------------------------------------- /src/hierarchical_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/hierarchical_source.c -------------------------------------------------------------------------------- /src/hierarchical_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/hierarchical_source.h -------------------------------------------------------------------------------- /src/isometries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/isometries.c -------------------------------------------------------------------------------- /src/permute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/permute.c -------------------------------------------------------------------------------- /src/permute/permute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/permute/permute.h -------------------------------------------------------------------------------- /src/permute/permute_AVX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/permute/permute_AVX.c -------------------------------------------------------------------------------- /src/permute/permute_AVX512F.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/permute/permute_AVX512F.c -------------------------------------------------------------------------------- /src/permute/permute_NEON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/permute/permute_NEON.c -------------------------------------------------------------------------------- /src/permute/permute_SSE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/permute/permute_SSE.c -------------------------------------------------------------------------------- /src/permute/permute_SSE2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/permute/permute_SSE2.c -------------------------------------------------------------------------------- /src/permute/permute_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/permute/permute_default.c -------------------------------------------------------------------------------- /src/recurrence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/recurrence.c -------------------------------------------------------------------------------- /src/recurrence/recurrence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/recurrence/recurrence.h -------------------------------------------------------------------------------- /src/recurrence/recurrence_AVX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/recurrence/recurrence_AVX.c -------------------------------------------------------------------------------- /src/recurrence/recurrence_AVX512F.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/recurrence/recurrence_AVX512F.c -------------------------------------------------------------------------------- /src/recurrence/recurrence_AVX_FMA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/recurrence/recurrence_AVX_FMA.c -------------------------------------------------------------------------------- /src/recurrence/recurrence_NEON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/recurrence/recurrence_NEON.c -------------------------------------------------------------------------------- /src/recurrence/recurrence_SSE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/recurrence/recurrence_SSE.c -------------------------------------------------------------------------------- /src/recurrence/recurrence_SSE2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/recurrence/recurrence_SSE2.c -------------------------------------------------------------------------------- /src/recurrence/recurrence_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/recurrence/recurrence_default.c -------------------------------------------------------------------------------- /src/rotations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/rotations.c -------------------------------------------------------------------------------- /src/rotations/rotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/rotations/rotations.h -------------------------------------------------------------------------------- /src/rotations/rotations_AVX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/rotations/rotations_AVX.c -------------------------------------------------------------------------------- /src/rotations/rotations_AVX512F.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/rotations/rotations_AVX512F.c -------------------------------------------------------------------------------- /src/rotations/rotations_AVX_FMA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/rotations/rotations_AVX_FMA.c -------------------------------------------------------------------------------- /src/rotations/rotations_NEON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/rotations/rotations_NEON.c -------------------------------------------------------------------------------- /src/rotations/rotations_SSE2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/rotations/rotations_SSE2.c -------------------------------------------------------------------------------- /src/rotations/rotations_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/rotations/rotations_default.c -------------------------------------------------------------------------------- /src/tdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/tdc.c -------------------------------------------------------------------------------- /src/tdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/tdc.h -------------------------------------------------------------------------------- /src/tdc_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/tdc_source.c -------------------------------------------------------------------------------- /src/tdc_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/tdc_source.h -------------------------------------------------------------------------------- /src/transforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/transforms.c -------------------------------------------------------------------------------- /src/transforms_mpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/transforms_mpfr.c -------------------------------------------------------------------------------- /src/transforms_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/transforms_source.c -------------------------------------------------------------------------------- /src/tridiagonal_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/tridiagonal_source.c -------------------------------------------------------------------------------- /src/tridiagonal_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/src/tridiagonal_source.h -------------------------------------------------------------------------------- /test/test_banded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_banded.c -------------------------------------------------------------------------------- /test/test_banded_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_banded_source.c -------------------------------------------------------------------------------- /test/test_dprk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_dprk.c -------------------------------------------------------------------------------- /test/test_dprk_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_dprk_source.c -------------------------------------------------------------------------------- /test/test_drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_drivers.c -------------------------------------------------------------------------------- /test/test_elliptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_elliptic.c -------------------------------------------------------------------------------- /test/test_elliptic_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_elliptic_source.c -------------------------------------------------------------------------------- /test/test_fftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_fftw.c -------------------------------------------------------------------------------- /test/test_fmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_fmm.c -------------------------------------------------------------------------------- /test/test_fmm_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_fmm_source.c -------------------------------------------------------------------------------- /test/test_helmholtzhodge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_helmholtzhodge.c -------------------------------------------------------------------------------- /test/test_hierarchical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_hierarchical.c -------------------------------------------------------------------------------- /test/test_hierarchical_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_hierarchical_source.c -------------------------------------------------------------------------------- /test/test_isometries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_isometries.c -------------------------------------------------------------------------------- /test/test_permute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_permute.c -------------------------------------------------------------------------------- /test/test_recurrence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_recurrence.c -------------------------------------------------------------------------------- /test/test_rotations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_rotations.c -------------------------------------------------------------------------------- /test/test_tdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_tdc.c -------------------------------------------------------------------------------- /test/test_tdc_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_tdc_source.c -------------------------------------------------------------------------------- /test/test_tdc_source2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_tdc_source2.c -------------------------------------------------------------------------------- /test/test_transforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_transforms.c -------------------------------------------------------------------------------- /test/test_transforms_mpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_transforms_mpfr.c -------------------------------------------------------------------------------- /test/test_transforms_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_transforms_source.c -------------------------------------------------------------------------------- /test/test_tridiagonal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_tridiagonal.c -------------------------------------------------------------------------------- /test/test_tridiagonal_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikaelSlevinsky/FastTransforms/HEAD/test/test_tridiagonal_source.c --------------------------------------------------------------------------------