![]() |
Reference documentation for deal.II version GIT 741a3088b8 2023-04-01 07:05:02+00:00
|
#include <deal.II/base/polynomial.h>
#include <deal.II/base/polynomials_barycentric.h>
#include <deal.II/base/quadrature_lib.h>
#include <deal.II/base/tensor_product_polynomials.h>
#include <deal.II/fe/fe_pyramid_p.h>
#include <deal.II/fe/fe_simplex_p.h>
#include <deal.II/fe/fe_simplex_p_bubbles.h>
#include <deal.II/fe/fe_wedge_p.h>
#include <deal.II/fe/mapping_fe.h>
#include <deal.II/fe/mapping_q.h>
#include <deal.II/fe/mapping_q1.h>
#include <deal.II/grid/grid_generator.h>
#include <deal.II/grid/reference_cell.h>
#include <deal.II/grid/tria.h>
#include <iostream>
#include <memory>
#include "reference_cell.inst"
Go to the source code of this file.
Namespaces | |
VTKCellType | |
Enumerations | |
enum | : unsigned int |
Functions | |
std::ostream & | operator<< (std::ostream &out, const ReferenceCell &reference_cell) |
std::istream & | operator>> (std::istream &in, ReferenceCell &reference_cell) |
anonymous enum : unsigned int |
Definition at line 44 of file reference_cell.cc.
std::ostream& operator<< | ( | std::ostream & | out, |
const ReferenceCell & | reference_cell | ||
) |
Output operator that writes the reference_cell
object to the stream in a text format in which the object is represented by an integer. The details of which integer value represents each kind of reference cell is unimportant and consequently not specified. If you want a string representation of what a ReferenceCell is, use ReferenceCell::to_string().
Definition at line 810 of file reference_cell.cc.
std::istream& operator>> | ( | std::istream & | in, |
ReferenceCell & | reference_cell | ||
) |
Input operator that reads the reference_cell
object from the stream in a text format in which the object is represented by an integer. Which specific integer value represents which reference cell is unspecified, but the function uses the same translation as the corresponding output operator<<
.
Definition at line 824 of file reference_cell.cc.