From 1f14bf72323f96bfc75a16572e44352cac30b96a Mon Sep 17 00:00:00 2001
From: Tobias Malkmus <tomalk@mathematik.uni-freiburg.de>
Date: Thu, 27 Feb 2014 10:24:40 +0100
Subject: [PATCH] [densematrix] implement cast of DenseVector into
 DynamicVector

---
 dune/common/dynvector.hh | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/dune/common/dynvector.hh b/dune/common/dynvector.hh
index 8c9019e53..c3c82fdf4 100644
--- a/dune/common/dynvector.hh
+++ b/dune/common/dynvector.hh
@@ -71,6 +71,17 @@ namespace Dune {
       _data(x._data)
     {}
 
+    //! Constructor making vector with identical coordinates
+    template<class X>
+    DynamicVector (const DenseVector< X > & x) :
+      _data( )
+    {
+      const size_type n = x.size();
+      _data.reserve(n);
+      for( size_type i =0; i<n ;++i)
+        _data.push_back( x[ i ] );
+    }
+
     using Base::operator=;
 
     //==== forward some methods of std::vector
-- 
GitLab