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

Projection is not needed in restrict as the vector to be restricted is

already projected.

[[Imported from SVN: r4414]]
parent 45b5cf79
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,6 @@ namespace Dune
ParallelInformation<T>& comm)
{
Transfer<V,BlockVector<B>,SequentialInformation>::restrict (aggregates, coarse, fine, SequentialInformation());
comm.template forward<CopyGatherScatter<BlockVector<B> > >(coarse, coarse);
}
template<class V, class B, class T1, class T2>
......@@ -144,7 +143,7 @@ namespace Dune
OwnerOverlapCopyCommunication<T1,T2>& comm)
{
Transfer<V,BlockVector<B>,SequentialInformation>::restrict (aggregates, coarse, fine, SequentialInformation());
comm.project(coarse);
// comm.project(coarse);
}
/** @} */
} // namspace Amg
......
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