From f774cbf304ad5c530213691b9147c9bff3b37b82 Mon Sep 17 00:00:00 2001 From: Felix Schindler <felix.schindler@wwu.de> Date: Sat, 7 Feb 2015 12:10:50 +0100 Subject: [PATCH] [la.common.vector] extend VectorAbstraction --- dune/stuff/la/container/vector-interface.hh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/dune/stuff/la/container/vector-interface.hh b/dune/stuff/la/container/vector-interface.hh index 066466ae5..16a98a589 100644 --- a/dune/stuff/la/container/vector-interface.hh +++ b/dune/stuff/la/container/vector-interface.hh @@ -650,12 +650,20 @@ struct VectorAbstractionBase { static const bool is_vector = LA::is_vector<VectorImp>::value; + static const bool has_static_size = false; + + static const size_t static_size = std::numeric_limits<size_t>::max(); + typedef typename std::conditional<is_vector, VectorImp, void>::type VectorType; typedef typename std::conditional<is_vector, typename VectorImp::ScalarType, void>::type ScalarType; typedef ScalarType S; - static typename std::enable_if<is_vector, VectorType>::type create(const size_t sz, - const ScalarType& val = ScalarType(0)) + static inline typename std::enable_if<is_vector, VectorType>::type create(const size_t sz) + { + return VectorType(sz); + } + + static inline typename std::enable_if<is_vector, VectorType>::type create(const size_t sz, const ScalarType& val) { return VectorType(sz, val); } -- GitLab