Skip to content
Snippets Groups Projects
Commit 27a43baf authored by Markus Blatt's avatar Markus Blatt
Browse files

Some more asserts.

[[Imported from SVN: r537]]
parent 4d048826
No related branches found
No related tags found
No related merge requests found
......@@ -886,10 +886,13 @@ namespace Dune
: indexSet_(indexset), size_(size),
indices_(size_, static_cast<const IndexPair*>(0))
{
assert(size>=indexset.size());
const_iterator end_ = indexSet_.end();
size_t i=0;
for(const_iterator pair = indexSet_.begin(); pair!=end_; ++pair, ++i)
for(const_iterator pair = indexSet_.begin(); pair!=end_; ++pair, ++i) {
assert(pair->local()<size_);
indices_[pair->local()] = &(*pair);
}
}
template<class I>
......
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