6 #ifndef DUNE_ISTL_BVECTOR_HH 7 #define DUNE_ISTL_BVECTOR_HH 12 #include <initializer_list> 18 #include <dune/common/dotproduct.hh> 19 #include <dune/common/ftraits.hh> 20 #include <dune/common/fmatrix.hh> 21 #include <dune/common/fvector.hh> 22 #include <dune/common/promotiontraits.hh> 23 #include <dune/common/typetraits.hh> 24 #include <dune/common/scalarvectorview.hh> 48 template <
class B,
bool isNumber>
52 class BlockTraitsImp<B,true>
59 class BlockTraitsImp<B,false>
62 using field_type =
typename B::field_type;
68 using BlockTraits = BlockTraitsImp<B,IsNumber<B>::value>;
83 template<
class B,
class ST=std::
size_t >
84 class block_vector_unmanaged :
public base_array_unmanaged<B,ST>
89 using field_type =
typename Imp::BlockTraits<B>::field_type;
98 typedef typename base_array_unmanaged<B,ST>::iterator Iterator;
101 typedef typename base_array_unmanaged<B,ST>::const_iterator ConstIterator;
104 typedef B value_type;
107 typedef B& reference;
110 typedef const B& const_reference;
115 block_vector_unmanaged& operator= (
const field_type& k)
117 for (size_type i=0; i<this->n; i++)
124 block_vector_unmanaged& operator+= (
const block_vector_unmanaged& y)
126 #ifdef DUNE_ISTL_WITH_CHECKING 127 if (this->n!=y.N()) DUNE_THROW(ISTLError,
"vector size mismatch");
129 for (size_type i=0; i<this->n; ++i) (*
this)[i] += y[i];
134 block_vector_unmanaged& operator-= (
const block_vector_unmanaged& y)
136 #ifdef DUNE_ISTL_WITH_CHECKING 137 if (this->n!=y.N()) DUNE_THROW(ISTLError,
"vector size mismatch");
139 for (size_type i=0; i<this->n; ++i) (*
this)[i] -= y[i];
144 block_vector_unmanaged& operator*= (
const field_type& k)
146 for (size_type i=0; i<this->n; ++i) (*
this)[i] *= k;
151 block_vector_unmanaged& operator/= (
const field_type& k)
153 for (size_type i=0; i<this->n; ++i) (*
this)[i] /= k;
158 block_vector_unmanaged& axpy (
const field_type& a,
const block_vector_unmanaged& y)
160 #ifdef DUNE_ISTL_WITH_CHECKING 161 if (this->n!=y.N()) DUNE_THROW(ISTLError,
"vector size mismatch");
163 for (size_type i=0; i<this->n; ++i)
164 Impl::asVector((*
this)[i]).axpy(a,Impl::asVector(y[i]));
177 template<
class OtherB,
class OtherST>
178 auto operator* (
const block_vector_unmanaged<OtherB,OtherST>& y)
const 180 typedef typename PromotionTraits<field_type,typename BlockTraits<OtherB>::field_type>::PromotedType PromotedType;
182 #ifdef DUNE_ISTL_WITH_CHECKING 183 if (this->n!=y.N()) DUNE_THROW(ISTLError,
"vector size mismatch");
185 for (size_type i=0; i<this->n; ++i) {
186 sum += PromotedType(((*
this)[i])*y[i]);
198 template<
class OtherB,
class OtherST>
199 auto dot(
const block_vector_unmanaged<OtherB,OtherST>& y)
const 201 typedef typename PromotionTraits<field_type,typename BlockTraits<OtherB>::field_type>::PromotedType PromotedType;
203 #ifdef DUNE_ISTL_WITH_CHECKING 204 if (this->n!=y.N()) DUNE_THROW(ISTLError,
"vector size mismatch");
207 for (size_type i=0; i<this->n; ++i)
208 sum += Impl::asVector((*
this)[i]).dot(Impl::asVector(y[i]));
216 typename FieldTraits<field_type>::real_type one_norm ()
const 218 typename FieldTraits<field_type>::real_type sum=0;
219 for (size_type i=0; i<this->n; ++i)
220 sum += Impl::asVector((*
this)[i]).one_norm();
225 typename FieldTraits<field_type>::real_type one_norm_real ()
const 227 typename FieldTraits<field_type>::real_type sum=0;
228 for (size_type i=0; i<this->n; ++i)
229 sum += Impl::asVector((*
this)[i]).one_norm_real();
234 typename FieldTraits<field_type>::real_type two_norm ()
const 237 return sqrt(two_norm2());
241 typename FieldTraits<field_type>::real_type two_norm2 ()
const 243 typename FieldTraits<field_type>::real_type sum=0;
244 for (size_type i=0; i<this->n; ++i)
245 sum += Impl::asVector((*
this)[i]).two_norm2();
250 template <
typename ft = field_type,
251 typename std::enable_if<!HasNaN<ft>::value,
int>::type = 0>
252 typename FieldTraits<ft>::real_type infinity_norm()
const {
253 using real_type =
typename FieldTraits<ft>::real_type;
257 for (
auto const &xi : *
this) {
258 real_type
const a = Impl::asVector(xi).infinity_norm();
265 template <
typename ft = field_type,
266 typename std::enable_if<!HasNaN<ft>::value,
int>::type = 0>
267 typename FieldTraits<ft>::real_type infinity_norm_real()
const {
268 using real_type =
typename FieldTraits<ft>::real_type;
272 for (
auto const &xi : *
this) {
273 real_type
const a = Impl::asVector(xi).infinity_norm_real();
280 template <
typename ft = field_type,
281 typename std::enable_if<HasNaN<ft>::value,
int>::type = 0>
282 typename FieldTraits<ft>::real_type infinity_norm()
const {
283 using real_type =
typename FieldTraits<ft>::real_type;
290 for (
auto const &xi : *
this) {
291 real_type
const a = Impl::asVector(xi).infinity_norm();
295 return norm * (isNaN / isNaN);
299 template <
typename ft = field_type,
300 typename std::enable_if<HasNaN<ft>::value,
int>::type = 0>
301 typename FieldTraits<ft>::real_type infinity_norm_real()
const {
302 using real_type =
typename FieldTraits<ft>::real_type;
308 for (
auto const &xi : *
this) {
309 real_type
const a = Impl::asVector(xi).infinity_norm_real();
314 return norm * (isNaN / isNaN);
326 size_type dim ()
const 330 for (size_type i=0; i<this->n; i++)
331 d += Impl::asVector((*
this)[i]).dim();
338 block_vector_unmanaged () : base_array_unmanaged<B,ST>()
352 ScopeGuard(F cleanupFunc) : cleanupFunc_(
std::move(cleanupFunc)) {}
353 ScopeGuard(
const ScopeGuard &) =
delete;
354 ScopeGuard(ScopeGuard &&) =
delete;
355 ScopeGuard &operator=(ScopeGuard) =
delete;
356 ~ScopeGuard() { cleanupFunc_(); }
370 ScopeGuard<F> makeScopeGuard(F cleanupFunc)
372 return { std::move(cleanupFunc) };
390 template<
class B,
class A=std::allocator<B> >
391 class BlockVector :
public Imp::block_vector_unmanaged<B,typename A::size_type>
410 typedef typename Imp::block_vector_unmanaged<B,size_type>::Iterator
Iterator;
413 typedef typename Imp::block_vector_unmanaged<B,size_type>::ConstIterator
ConstIterator;
450 static_assert(std::numeric_limits<S>::is_integer,
451 "capacity must be an unsigned integral type (be aware, that this constructor does not set the default value!)" );
453 storage_.reserve(_capacity);
470 [[maybe_unused]]
const auto &guard =
471 Imp::makeScopeGuard([
this]{ syncBaseArray(); });
483 return storage_.capacity();
498 [[maybe_unused]]
const auto &guard =
499 Imp::makeScopeGuard([
this]{ syncBaseArray(); });
500 storage_.resize(size);
505 noexcept(noexcept(std::declval<BlockVector>().storage_ = a.storage_))
507 storage_ = a.storage_;
513 noexcept(noexcept(std::declval<BlockVector>().
swap(a)))
520 noexcept(noexcept(std::declval<BlockVector>().storage_ = a.storage_))
522 [[maybe_unused]]
const auto &guard =
523 Imp::makeScopeGuard([
this]{ syncBaseArray(); });
524 storage_ = a.storage_;
530 noexcept(noexcept(std::declval<BlockVector>().
swap(a)))
539 std::declval<BlockVector&>().storage_.swap(other.storage_)))
541 [[maybe_unused]]
const auto &guard = Imp::makeScopeGuard([&]{
543 other.syncBaseArray();
545 storage_.swap(other.storage_);
552 (
static_cast<Imp::block_vector_unmanaged<B,size_type>&
>(*this)) = k;
557 void syncBaseArray() noexcept
559 this->p = storage_.data();
560 this->n = storage_.size();
563 std::vector<B, A> storage_;
571 template<
class B,
class A>
581 template<
class K,
class A>
583 std::ostream& operator<< (std::ostream& s, const BlockVector<K, A>& v)
587 for (size_type i=0; i<v.size(); i++)
588 s << v[i] << std::endl;
615 template<
class B,
class A>
617 template<
class B,
class A=std::allocator<B> >
619 class BlockVectorWindow :
public Imp::block_vector_unmanaged<B,typename A::size_type>
626 using field_type =
typename Imp::BlockTraits<B>::field_type;
629 typedef B block_type;
632 typedef A allocator_type;
635 typedef typename A::size_type size_type;
638 typedef typename Imp::block_vector_unmanaged<B,size_type>::Iterator Iterator;
641 typedef typename Imp::block_vector_unmanaged<B,size_type>::ConstIterator ConstIterator;
646 BlockVectorWindow () : Imp::block_vector_unmanaged<B,size_type>()
650 BlockVectorWindow (B* _p, size_type _n)
657 BlockVectorWindow (
const BlockVectorWindow& a)
664 BlockVectorWindow& operator= (
const BlockVectorWindow& a)
667 #ifdef DUNE_ISTL_WITH_CHECKING 668 if (this->n!=a.N()) DUNE_THROW(ISTLError,
"vector size mismatch");
674 for (size_type i=0; i<this->n; i++) this->p[i]=a.p[i];
680 BlockVectorWindow& operator= (
const field_type& k)
682 (
static_cast<Imp::block_vector_unmanaged<B,size_type>&
>(*this)) = k;
687 operator BlockVector<B, A>()
const {
688 auto bv = BlockVector<B, A>(this->n);
690 std::copy(this->begin(), this->end(), bv.begin());
698 void set (size_type _n, B* _p)
705 void setsize (size_type _n)
723 size_type getsize ()
const 741 template<
class B,
class ST=std::
size_t >
742 class compressed_block_vector_unmanaged :
public compressed_base_array_unmanaged<B,ST>
749 using field_type =
typename Imp::BlockTraits<B>::field_type;
752 typedef B block_type;
755 typedef typename compressed_base_array_unmanaged<B,ST>::iterator Iterator;
758 typedef typename compressed_base_array_unmanaged<B,ST>::const_iterator ConstIterator;
761 typedef ST size_type;
765 compressed_block_vector_unmanaged& operator= (
const field_type& k)
767 for (size_type i=0; i<this->n; i++)
777 compressed_block_vector_unmanaged& operator+= (
const V& y)
779 #ifdef DUNE_ISTL_WITH_CHECKING 780 if (!includesindexset(y)) DUNE_THROW(ISTLError,
"index set mismatch");
782 for (size_type i=0; i<y.n; ++i) this->
operator[](y.j[i]) += y.p[i];
788 compressed_block_vector_unmanaged& operator-= (
const V& y)
790 #ifdef DUNE_ISTL_WITH_CHECKING 791 if (!includesindexset(y)) DUNE_THROW(ISTLError,
"index set mismatch");
793 for (size_type i=0; i<y.n; ++i) this->
operator[](y.j[i]) -= y.p[i];
799 compressed_block_vector_unmanaged& axpy (
const field_type& a,
const V& y)
801 #ifdef DUNE_ISTL_WITH_CHECKING 802 if (!includesindexset(y)) DUNE_THROW(ISTLError,
"index set mismatch");
804 for (size_type i=0; i<y.n; ++i)
805 Impl::asVector((*
this)[y.j[i]]).axpy(a,Impl::asVector(y.p[i]));
810 compressed_block_vector_unmanaged& operator*= (
const field_type& k)
812 for (size_type i=0; i<this->n; ++i) (this->p)[i] *= k;
817 compressed_block_vector_unmanaged& operator/= (
const field_type& k)
819 for (size_type i=0; i<this->n; ++i) (this->p)[i] /= k;
827 field_type operator* (
const compressed_block_vector_unmanaged& y)
const 829 #ifdef DUNE_ISTL_WITH_CHECKING 830 if (!includesindexset(y) || !y.includesindexset(*
this) )
831 DUNE_THROW(ISTLError,
"index set mismatch");
834 for (size_type i=0; i<this->n; ++i)
835 sum += (this->p)[i] * y[(this->j)[i]];
843 typename FieldTraits<field_type>::real_type one_norm ()
const 845 typename FieldTraits<field_type>::real_type sum=0;
846 for (size_type i=0; i<this->n; ++i) sum += (this->p)[i].one_norm();
851 typename FieldTraits<field_type>::real_type one_norm_real ()
const 853 typename FieldTraits<field_type>::real_type sum=0;
854 for (size_type i=0; i<this->n; ++i) sum += (this->p)[i].one_norm_real();
859 typename FieldTraits<field_type>::real_type two_norm ()
const 862 typename FieldTraits<field_type>::real_type sum=0;
863 for (size_type i=0; i<this->n; ++i) sum += (this->p)[i].two_norm2();
868 typename FieldTraits<field_type>::real_type two_norm2 ()
const 870 typename FieldTraits<field_type>::real_type sum=0;
871 for (size_type i=0; i<this->n; ++i) sum += (this->p)[i].two_norm2();
876 template <
typename ft = field_type,
877 typename std::enable_if<!HasNaN<ft>::value,
int>::type = 0>
878 typename FieldTraits<ft>::real_type infinity_norm()
const {
879 using real_type =
typename FieldTraits<ft>::real_type;
883 for (
auto const &x : *
this) {
884 real_type
const a = x.infinity_norm();
891 template <
typename ft = field_type,
892 typename std::enable_if<!HasNaN<ft>::value,
int>::type = 0>
893 typename FieldTraits<ft>::real_type infinity_norm_real()
const {
894 using real_type =
typename FieldTraits<ft>::real_type;
898 for (
auto const &x : *
this) {
899 real_type
const a = x.infinity_norm_real();
906 template <
typename ft = field_type,
907 typename std::enable_if<HasNaN<ft>::value,
int>::type = 0>
908 typename FieldTraits<ft>::real_type infinity_norm()
const {
909 using real_type =
typename FieldTraits<ft>::real_type;
914 for (
auto const &x : *
this) {
915 real_type
const a = x.infinity_norm();
919 return norm * (isNaN / isNaN);
923 template <
typename ft = field_type,
924 typename std::enable_if<HasNaN<ft>::value,
int>::type = 0>
925 typename FieldTraits<ft>::real_type infinity_norm_real()
const {
926 using real_type =
typename FieldTraits<ft>::real_type;
931 for (
auto const &x : *
this) {
932 real_type
const a = x.infinity_norm_real();
936 return norm * (isNaN / isNaN);
948 size_type dim ()
const 951 for (size_type i=0; i<this->n; i++)
952 d += (this->p)[i].dim();
958 compressed_block_vector_unmanaged () : compressed_base_array_unmanaged<B,ST>()
963 bool includesindexset (
const V& y)
965 typename V::ConstIterator e=this->end();
966 for (size_type i=0; i<y.n; i++)
967 if (this->find(y.j[i])==e)
992 template<
class B,
class ST=std::
size_t >
993 class CompressedBlockVectorWindow :
public compressed_block_vector_unmanaged<B,ST>
1000 using field_type =
typename Imp::BlockTraits<B>::field_type;
1003 typedef B block_type;
1006 typedef ST size_type;
1009 typedef typename compressed_block_vector_unmanaged<B,ST>::Iterator Iterator;
1012 typedef typename compressed_block_vector_unmanaged<B,ST>::ConstIterator ConstIterator;
1017 CompressedBlockVectorWindow () : compressed_block_vector_unmanaged<B,ST>()
1021 CompressedBlockVectorWindow (B* _p, size_type* _j, size_type _n)
1029 CompressedBlockVectorWindow (
const CompressedBlockVectorWindow& a)
1037 CompressedBlockVectorWindow& operator= (
const CompressedBlockVectorWindow& a)
1040 #ifdef DUNE_ISTL_WITH_CHECKING 1041 if (this->n!=a.N()) DUNE_THROW(ISTLError,
"vector size mismatch");
1047 for (size_type i=0; i<this->n; i++) this->p[i]=a.p[i];
1048 for (size_type i=0; i<this->n; i++) this->j[i]=a.j[i];
1054 CompressedBlockVectorWindow& operator= (
const field_type& k)
1056 (
static_cast<compressed_block_vector_unmanaged<B,ST>&
>(*this)) = k;
1064 void set (size_type _n, B* _p, size_type* _j)
1072 void setsize (size_type _n)
1084 void setindexptr (size_type* _j)
1096 size_type* getindexptr ()
1102 const B* getptr ()
const 1108 const size_type* getindexptr ()
const 1113 size_type getsize ()
const 1123 template<
typename B,
typename A>
1124 struct AutonomousValueType<Imp::BlockVectorWindow<B,A>>
1126 using type = BlockVector<B, A>;
size_type capacity() const
Get the capacity of the vector.
Definition: bvector.hh:481
Imp::block_vector_unmanaged< B, size_type >::Iterator Iterator
make iterators available as types
Definition: bvector.hh:410
FieldTraits< B >::real_type real_type
Definition: bvector.hh:575
BlockVector(const BlockVector &a) noexcept(noexcept(std::declval< BlockVector >().storage_=a.storage_))
copy constructor
Definition: bvector.hh:504
BlockVector(std::initializer_list< B > const &l)
Construct from a std::initializer_list.
Definition: bvector.hh:430
BlockVector(size_type _n, S _capacity)
Make vector with _n components but preallocating capacity components.
Definition: bvector.hh:448
B block_type
export the type representing the components
Definition: bvector.hh:401
A::size_type size_type
The type for the index access.
Definition: bvector.hh:407
Helper functions for determining the vector/matrix block level.
void reserve(size_type capacity)
Reserve space.
Definition: bvector.hh:468
BlockVector & operator=(const BlockVector &a) noexcept(noexcept(std::declval< BlockVector >().storage_=a.storage_))
assignment
Definition: bvector.hh:519
typename Imp::BlockTraits< T >::field_type field_type
export the type representing the field
Definition: bvector.hh:398
Implements several basic array containers.
BlockVector(size_type _n)
make vector with _n components
Definition: bvector.hh:424
A allocator_type
export the allocator type
Definition: bvector.hh:404
FieldTraits< B >::field_type field_type
Definition: bvector.hh:574
void swap(BlockVector &other) noexcept(noexcept(std::declval< BlockVector &>().storage_.swap(other.storage_)))
swap operation
Definition: bvector.hh:537
Imp::block_vector_unmanaged< B, size_type >::ConstIterator ConstIterator
make iterators available as types
Definition: bvector.hh:413
BlockVector()
makes empty vector
Definition: bvector.hh:418
Definition: allocator.hh:11
A vector of blocks with memory management.
Definition: bvector.hh:391
void resize(size_type size)
Resize the vector.
Definition: bvector.hh:496
BlockVector(BlockVector &&a) noexcept(noexcept(std::declval< BlockVector >().swap(a)))
move constructor
Definition: bvector.hh:512