Revision a53065a09c3fce65a63e137deb5bccb6162e6cff authored by Matthias Templ on 18 November 2020, 20:10:02 UTC, committed by cran-robot on 18 November 2020, 20:10:02 UTC
1 parent 9ae1e67
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