LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
Loading...
Searching...
No Matches
quad_rule.cc
1/***************************************************************************
2 * LehrFEM++ - A simple C++ finite element libray for teaching
3 * Developed from 2018 at the Seminar of Applied Mathematics of ETH Zurich,
4 * lead developers Dr. R. Casagrande and Prof. R. Hiptmair
5 ***************************************************************************/
6
15#include "quad_rule.h"
16
17namespace lf::quad {
18
19std::ostream& operator<<(std::ostream& stream,
20 const lf::quad::QuadRule& quadrule) {
21 quadrule.PrintInfo(stream);
22 return stream;
23}
24
25} // namespace lf::quad
Represents a Quadrature Rule over one of the Reference Elements.
Definition quad_rule.h:58
void PrintInfo(std::ostream &o, int out_ctrl=0) const
Output function controlled by variable out_ctrl;.
Definition quad_rule.h:169
Rules for numerical quadrature on reference entity shapes.
std::ostream & operator<<(std::ostream &stream, const lf::quad::QuadRule &quadrule)
Output operator for quadrature rules.
Definition quad_rule.cc:19