Skip to content
Snippets Groups Projects
Commit f0308b50 authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[discretefunction.local] add add(vector) method

parent 07dd5cd5
No related branches found
No related tags found
No related merge requests found
......@@ -117,6 +117,14 @@ public:
vector_.add_to_entry(indices_[ii], val);
}
template <class OtherVectorImp>
void add(const OtherVectorImp& vector)
{
assert(vector.size() == indices_.size());
for (size_t ii = 0; ii < indices_.size(); ++ii)
add(ii, vector[ii]);
}
private:
using BaseType::indices_;
VectorType& vector_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment