Alamo
Matrix4.H
Go to the documentation of this file.
1#ifndef SET_MATRIX4_H
2#define SET_MATRIX4_H
3
4#include <iostream>
5
6#include "Util/Util.H"
7#include "Set/Base.H"
8
9namespace Set
10{
11
13
14template<int DIM, int SYM>
16{
17};
18
19template<int dim, int sym>
20std::ostream&
21operator<< (std::ostream& os, const Matrix4<dim,sym>& b)
22{
24 bcopy.Print(os);
25 return os;
26}
27
28}
29
30
31
32#endif
A collection of data types and symmetry-reduced data structures.
Definition Base.H:17
Sym
Definition Matrix4.H:12
@ None
Definition Matrix4.H:12
@ MajorMinor
Definition Matrix4.H:12
@ Full
Definition Matrix4.H:12
@ Diagonal
Definition Matrix4.H:12
@ Isotropic
Definition Matrix4.H:12
@ Major
Definition Matrix4.H:12
@ Minor
Definition Matrix4.H:12
Eigen::Matrix< amrex::Real, AMREX_SPACEDIM, 1 > Vector
Definition Base.H:19
std::ostream & operator<<(std::ostream &os, const Matrix4< dim, sym > &b)
Definition Matrix4.H:21