diff --git a/disc/operators/localstiffness.hh b/disc/operators/localstiffness.hh index 9c1bb46..32c1501 100644 --- a/disc/operators/localstiffness.hh +++ b/disc/operators/localstiffness.hh @@ -75,7 +75,7 @@ namespace Dune // types for matrics, vectors and boundary conditions typedef FieldMatrix MBlockType; // one entry in the stiffness matrix typedef FieldVector VBlockType; // one entry in the global vectors - typedef FixedArray BCBlockType; // componentwise boundary conditions + typedef array BCBlockType; // componentwise boundary conditions /*! initialize local stiffness matrix */ LocalStiffness () diff --git a/disc/operators/p1operator.hh b/disc/operators/p1operator.hh index 1c7481f..49a0d2d 100644 --- a/disc/operators/p1operator.hh +++ b/disc/operators/p1operator.hh @@ -720,7 +720,7 @@ namespace Dune { // Check for the TypeTag - IsTrue::value || SameType::value>::yes(); + IsTrue::value || is_same::value>::yes(); // be verbose // std::cout << g.comm().rank() << ": " << "vector size = " << vertexmapper.size() << " + " << extraDOFs << std::endl; @@ -731,7 +731,7 @@ namespace Dune // std::cout << g.comm().rank() << ": " << "hanging nodes=" << hangingnodes << " links=" << links.size() << std::endl; // set size of all rows to zero - for (int i=0; i::VM VM; - typedef FixedArray BCBlockType; // componentwise boundary conditions + typedef array BCBlockType; // componentwise boundary conditions // A DataHandle class to exchange border rows