Revision 775c7e1be4c58aaf8adccdd2b92d07aa9cdc265f authored by Matthias Templ on 14 January 2020, 05:10:03 UTC, committed by cran-robot on 14 January 2020, 05:10:03 UTC
1 parent d761b2f
Raw File
gauss_points_weights.h
//
// Created by Alessia Di Blasi on 17/04/18.
//

#ifndef GAUSS_POINTS_WEIGHTS_CPP_GAUSS_POINTS_WEIGHTS_HPP
#define GAUSS_POINTS_WEIGHTS_CPP_GAUSS_POINTS_WEIGHTS_HPP
#include <vector>
/*! \file
  @brief Compute Gauss points and weights to integrate splines
*/
namespace integral{
    void grule(std::vector<double> &bp, std::vector<double> &wf);
}

#endif //GAUSS_POINTS_WEIGHTS_CPP_GAUSS_POINTS_WEIGHTS_HPP
back to top