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

#include <dune/common/fmatrix.hh>
#include <dune/common/fvector.hh>
#include <dune/istl/bcrsmatrix.hh>
#include <dune/istl/bvector.hh>

using LocalVector = Dune::FieldVector<double, DIM>;
using LocalMatrix = Dune::FieldMatrix<double, DIM, DIM>;
using Vector = Dune::BlockVector<LocalVector>;
using Matrix = Dune::BCRSMatrix<LocalMatrix>;
using ScalarVector = Dune::BlockVector<Dune::FieldVector<double, 1>>;
#endif