Skip to content
Snippets Groups Projects

[examples] Fix matrix/vector types of examples

Merged Carsten Gräser requested to merge cleanup/fix-example-types into master
3 files
+ 8
8
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 3
3
@@ -101,9 +101,9 @@ int main (int argc, char *argv[])
// Stiffness matrix and right hand side vector
/////////////////////////////////////////////////////////
using Matrix = Dune::Matrix<Dune::BCRSMatrix<Dune::FieldMatrix<double,1,1> > >;
using Vector = Dune::BlockVector<Dune::BlockVector<Dune::FieldVector<double,1> > >;
using BitVector = Dune::BlockVector<Dune::BlockVector<Dune::FieldVector<char,1> > >;
using Matrix = Dune::Matrix<Dune::BCRSMatrix<double> >;
using Vector = Dune::BlockVector<Dune::BlockVector<double> >;
using BitVector = Dune::BlockVector<Dune::BlockVector<char> >;
using Functions::istlVectorBackend;
Loading