From 21b472e1245bd565c5be892215e61ca57290a55e Mon Sep 17 00:00:00 2001 From: Mikael Mortensen Date: Wed, 11 Sep 2024 21:01:01 +0200 Subject: [PATCH] Fix build nr --- src/cython/l2c.pyx | 10 +++++----- src/meson.build | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/cython/l2c.pyx b/src/cython/l2c.pyx index 8c7bf16..a0e550a 100644 --- a/src/cython/l2c.pyx +++ b/src/cython/l2c.pyx @@ -17,15 +17,15 @@ cpdef enum: cdef class Leg2Cheb: """Class for Legendre/Chebyshev transforms - A fast multipole algorithm similar to:: + A fast multipole algorithm:: - B. K. Alpert and V. Rokhlin, A fast algorithm for the evaluation of - Legendre expansions, 389 SIAM Journal on Scientific and Statistical - Computing, 12 (1991), pp. 158–179, https://doi.390org/10.1137/0912009.391 + M Mortensen "A faster multipole Legendre-Chebyshev transform", to be + published in SIAM Journal on Scientific Computing. See + https://github.com/spectralDNS/Legendre-to-Chebyshev/blob/main/FMM_paper.pdf Parameters ---------- - input_array : Numpy array of floats + input_array : Numpy array of floats output_array : Numpy array of floats M : int, optional Rank of hierarchical matrices diff --git a/src/meson.build b/src/meson.build index b3903c2..8dd2a86 100644 --- a/src/meson.build +++ b/src/meson.build @@ -1,5 +1,5 @@ project('leg2cheb', 'c', 'cython', 'cpp', - version : '1.0', + version : '1.1.1', default_options : [ 'buildtype=release', 'warning_level=1',