1#ifndef DUNE_FEM_GAUSSPOINTS_HH
2#define DUNE_FEM_GAUSSPOINTS_HH
7#include <dune/common/visibility.hh>
35 std::vector< std::vector< double > > G;
36 std::vector< std::vector< double > > W;
51 double point (
int m,
int i )
const
53 assert(m > 0 && i < m);
66 assert(m > 0 && i < m);
90 int power (
int y,
int d )
const
93 for(
int i = 0; i < d; ++i )
Definition: bindguard.hh:11
one-dimensional Gauss points and their weights
Definition: gausspoints.hh:26
double point(int m, int i) const
obtain the i-th point of the m-th quadratre
Definition: gausspoints.hh:51
@ highestOrder
Definition: gausspoints.hh:32
int order(int m) const
obtain the order of the m-th quadratre
Definition: gausspoints.hh:76
@ MAXP
Definition: gausspoints.hh:29
int power(int y, int d) const
a simple power method
Definition: gausspoints.hh:90
double weight(int m, int i) const
obtain the i-th weight of the m-th quadratre
Definition: gausspoints.hh:64
GaussPts()
constructor initializing the Gauss points for all orders
Definition: gausspoints_implementation.hh:12