Skip to content
Snippets Groups Projects
Commit b3470821 authored by Oliver Sander's avatar Oliver Sander
Browse files

Use assign() method of std::vector to set the entire bitfield. It is way...

Use assign() method of std::vector to set the entire bitfield.  It is way faster than an explicit for loop

[[Imported from SVN: r5319]]
parent 8aab71de
No related branches found
No related tags found
No related merge requests found
......@@ -26,20 +26,17 @@ namespace Dune {
//! Constructor which initializes the field
BitField(int n, bool v) : std::vector<bool>(n) {
for (size_t i=0; i<size(); i++)
(*this)[i] = v;
this->assign(size(), v);
}
//! Sets all entries to <tt> true </tt>
void setAll() {
for (size_t i=0; i<size(); i++)
(*this)[i] = true;
this->assign(size(), true);
}
//! Sets all entries to <tt> false </tt>
void unsetAll() {
for (size_t i=0; i<size(); i++)
(*this)[i] = false;
this->assign(size(), false);
}
//! Returns the number of set bits
......
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