Skip to content
Snippets Groups Projects
Select Git revision
  • 5355899fb532d7cd0970ff49664c7d554001a690
  • master default protected
  • bugfix/cast-fft-boxes-correctly
  • feature/writeParticleStats
  • bugfix/fft-mem-leak
  • feature/add-fft-with-heffte
  • bugfix/cmake-export
  • feature/make-fft-subfolder
  • feature/defer-parameter-type-resolution
  • bugfix/particle-set-input-hdf5-init
  • feature/forcing-unit-test
  • feature/dealias-check2
  • bugfix/check_field_exists
  • feature/dealias-check
  • v3.x
  • feature/particles-vectorization
  • 7.0.1
  • 7.0.0
  • 6.2.4
  • 6.2.3
  • 6.2.2
  • 6.2.1
  • 6.2.0
  • 6.1.0
  • 6.0.0
  • 5.8.1
  • 5.8.0
  • 5.7.2
  • 5.7.1
  • 5.7.0
  • 5.6.0
  • 5.5.1
  • 5.5.0
  • 5.4.7
  • 5.4.6
  • 5.4.5
36 results

spline_n8.hpp

Blame
  • spline_n8.hpp 2.07 KiB
    /**********************************************************************
    *                                                                     *
    *  Copyright 2017 Max Planck Institute                                *
    *                 for Dynamics and Self-Organization                  *
    *                                                                     *
    *  This file is part of bfps.                                         *
    *                                                                     *
    *  bfps is free software: you can redistribute it and/or modify       *
    *  it under the terms of the GNU General Public License as published  *
    *  by the Free Software Foundation, either version 3 of the License,  *
    *  or (at your option) any later version.                             *
    *                                                                     *
    *  bfps is distributed in the hope that it will be useful,            *
    *  but WITHOUT ANY WARRANTY; without even the implied warranty of     *
    *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the      *
    *  GNU General Public License for more details.                       *
    *                                                                     *
    *  You should have received a copy of the GNU General Public License  *
    *  along with bfps.  If not, see <http://www.gnu.org/licenses/>       *
    *                                                                     *
    * Contact: Cristian.Lalescu@ds.mpg.de                                 *
    *                                                                     *
    **********************************************************************/
    
    
    
    #ifndef SPLINE_N8
    
    #define SPLINE_N8
    
    void beta_n8_m0(const int deriv, const double x, double *__restrict__ poly_val);
    void beta_n8_m1(const int deriv, const double x, double *__restrict__ poly_val);
    void beta_n8_m2(const int deriv, const double x, double *__restrict__ poly_val);
    void beta_n8_m3(const int deriv, const double x, double *__restrict__ poly_val);
    void beta_n8_m4(const int deriv, const double x, double *__restrict__ poly_val);
    
    #endif//SPLINE_N8