Revision 9ae1e67cb5e13c5bbc731a5fc56a0053182f16b0 authored by Matthias Templ on 11 February 2020, 16:20:02 UTC, committed by cran-robot on 11 February 2020, 16:20:02 UTC
1 parent 775c7e1
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