Skip to content
Snippets Groups Projects

Feature/adpativity next

Merged Timo Koch requested to merge feature/adpativity-next into next
2 files
+ 16
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -103,6 +103,14 @@ public:
PrimaryVariables& operator [](IndexType i)
{ return priVars_[i]; }
//! \brief vector space division by scalar
template <typename FieldType>
BoxElementSolution& operator/= (const FieldType& k)
{
priVars_ /= k;
return *this;
}
private:
Dune::BlockVector<PrimaryVariables> priVars_;
};
Loading