Skip to content
Snippets Groups Projects
Commit bf023947 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

[bugfix][Release] Initialize index with an unsigned value

With the recent changes to bigunsignedint, the index cannot
be initialized with a negative value anymore. We change this
to 1 to overcome the problem.

This commit together with the recent bugfixes by Ansgar
fixes the AMG code on master.
parent 6100b778
No related branches found
No related tags found
No related merge requests found
......@@ -1317,7 +1317,7 @@ namespace Dune {
if(remoteEntries==0)
return;
PairType index(-1);
PairType index(1);
MPI_Unpack(p_in, bufferSize, position, &index, 1,
type, comm_);
GlobalIndex oldGlobal=index.global();
......
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