Skip to content
Snippets Groups Projects
Forked from agnumpde / dune-tectonic
53 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
matrices.hh 155 B
#ifndef SRC_MATRICES_HH
#define SRC_MATRICES_HH

template <class Matrix> struct Matrices {
  Matrix elasticity;
  Matrix damping;
  Matrix mass;
};
#endif