From: Martin Kronbichler Date: Thu, 19 Apr 2018 08:37:36 +0000 (+0200) Subject: Fix two minor bugs in thread graph computation that were accidentally not tested. X-Git-Tag: v9.0.0-rc1~158^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1de91952e07dc8c5abf1e787d20b5225e462c71f;p=dealii.git Fix two minor bugs in thread graph computation that were accidentally not tested. --- diff --git a/source/matrix_free/task_info.cc b/source/matrix_free/task_info.cc index 13ee3c0ff1..d423b6b7fc 100644 --- a/source/matrix_free/task_info.cc +++ b/source/matrix_free/task_info.cc @@ -1410,7 +1410,7 @@ namespace internal unsigned int max_fe_index = 0; for (unsigned int i=0; i remaining_per_macro_cell - (max_fe_index); + (max_fe_index+1); std::vector > renumbering_fe_index; unsigned int cell; bool filled = true; if (hp_bool == true) { - renumbering_fe_index.resize(max_fe_index); + renumbering_fe_index.resize(max_fe_index+1); for (cell=counter-partition_counter; cell