From 264423717348a492c5017ea87083cbec4b5f1c3d Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Thu, 4 Oct 2018 14:34:10 -0600 Subject: [PATCH] Decide vertex and line ownership based on FE domination. --- source/dofs/dof_handler_policy.cc | 445 +++++++++++------- tests/fe/fe_nothing.output | 12 +- tests/hp/dof_renumbering_04.output | 70 +-- tests/hp/dof_renumbering_04.output.2 | 57 --- .../hp/dof_renumbering_04.output.clang-libc++ | 57 --- tests/hp/dof_renumbering_05.output | 74 +-- .../hp/dof_renumbering_05.output.clang-libc++ | 57 --- tests/hp/dof_renumbering_06.output | 70 +-- tests/hp/hp_hanging_nodes_01.output | 38 +- tests/hp/renumber_block_wise_01b.output | 4 +- tests/hp/renumber_component_wise.output | 100 ++-- .../hp_unify_dof_indices_04.mpirun=2.output | 10 +- .../hp_unify_dof_indices_06.mpirun=2.output | 8 +- .../hp_unify_dof_indices_08.mpirun=2.output | 4 +- .../hp_unify_dof_indices_08.mpirun=7.output | 14 +- 15 files changed, 468 insertions(+), 552 deletions(-) delete mode 100644 tests/hp/dof_renumbering_04.output.2 delete mode 100644 tests/hp/dof_renumbering_04.output.clang-libc++ delete mode 100644 tests/hp/dof_renumbering_05.output.clang-libc++ diff --git a/source/dofs/dof_handler_policy.cc b/source/dofs/dof_handler_policy.cc index 613746b074..08f223ebac 100644 --- a/source/dofs/dof_handler_policy.cc +++ b/source/dofs/dof_handler_policy.cc @@ -626,92 +626,109 @@ namespace internal const unsigned int n_active_fe_indices = dealii::internal::DoFAccessorImplementation::Implementation:: n_active_vertex_fe_indices(dof_handler, vertex_index); + if (n_active_fe_indices > 1) { - const unsigned int first_fe_index = + const std::set fe_indices = dealii::internal::DoFAccessorImplementation:: - Implementation::nth_active_vertex_fe_index(dof_handler, - vertex_index, - 0); + Implementation::get_active_vertex_fe_indices( + dof_handler, vertex_index); + + // find out which is the most dominating finite + // element of the ones that are used on this vertex + unsigned int most_dominating_fe_index = + dof_handler.get_fe_collection() + .find_dominating_fe_in_subset(fe_indices, + /*codim=*/dim); + + // if we haven't found a dominating finite element, + // choose the very first one to be dominant + if (most_dominating_fe_index == + numbers::invalid_unsigned_int) + most_dominating_fe_index = + dealii::internal::DoFAccessorImplementation:: + Implementation::nth_active_vertex_fe_index( + dof_handler, vertex_index, 0); + + // loop over the indices of all the finite + // elements that are not dominating, and + // identify their dofs to the most dominating + // one + for (const auto &other_fe_index : fe_indices) + if (other_fe_index != most_dominating_fe_index) + { + // make sure the entry in the equivalence + // table exists + ensure_existence_of_dof_identities<0>( + dof_handler.get_fe(most_dominating_fe_index), + dof_handler.get_fe(other_fe_index), + vertex_dof_identities[most_dominating_fe_index] + [other_fe_index]); - // loop over all the other FEs with which we want - // to identify the DoF indices of the first FE of - for (unsigned int f = 1; f < n_active_fe_indices; ++f) - { - const unsigned int other_fe_index = - dealii::internal::DoFAccessorImplementation:: - Implementation::nth_active_vertex_fe_index( - dof_handler, vertex_index, f); - - // make sure the entry in the equivalence - // table exists - ensure_existence_of_dof_identities<0>( - dof_handler.get_fe(first_fe_index), - dof_handler.get_fe(other_fe_index), - vertex_dof_identities[first_fe_index] - [other_fe_index]); - - // then loop through the identities we - // have. first get the global numbers of the - // dofs we want to identify and make sure they - // are not yet constrained to anything else, - // except for to each other. use the rule that - // we will always constrain the dof with the - // higher fe index to the one with the lower, - // to avoid circular reasoning. - DoFIdentities &identities = - *vertex_dof_identities[first_fe_index] - [other_fe_index]; - for (unsigned int i = 0; i < identities.size(); ++i) - { - const types::global_dof_index lower_dof_index = - dealii::internal::DoFAccessorImplementation:: - Implementation::get_vertex_dof_index( - dof_handler, - vertex_index, - first_fe_index, - identities[i].first); - const types::global_dof_index higher_dof_index = - dealii::internal::DoFAccessorImplementation:: - Implementation::get_vertex_dof_index( - dof_handler, - vertex_index, - other_fe_index, - identities[i].second); - - // on subdomain boundaries, we will encounter - // invalid DoFs on ghost cells, for which we have - // not yet distributed valid indices. depending on - // which finte element is dominating the other on - // this interface, we either have to constrain the - // valid to the invalid indices, or vice versa. - // - // we only store an identity if we are about to - // overwrite a valid DoF. we will skip constraining - // invalid DoFs for now, and consider them later in - // Phase 5. - if (higher_dof_index != numbers::invalid_dof_index) - { - // if the DoF indices of both elements are - // already distributed, i.e., both of these - // 'fe_indices' are associated with a locally - // owned cell, then we should either not have a - // dof_identity yet, or it must come out here to - // be exactly as we had computed before - if (lower_dof_index != - numbers::invalid_dof_index) - Assert((dof_identities.find( - higher_dof_index) == - dof_identities.end()) || - (dof_identities[higher_dof_index] == - lower_dof_index), - ExcInternalError()); - - dof_identities[higher_dof_index] = - lower_dof_index; - } - } - } + // then loop through the identities we + // have. first get the global numbers of the + // dofs we want to identify and make sure they + // are not yet constrained to anything else, + // except for to each other. use the rule that + // we will always constrain the dof with the + // higher fe index to the one with the lower, + // to avoid circular reasoning. + DoFIdentities &identities = + *vertex_dof_identities[most_dominating_fe_index] + [other_fe_index]; + for (unsigned int i = 0; i < identities.size(); ++i) + { + const types::global_dof_index master_dof_index = + dealii::internal::DoFAccessorImplementation:: + Implementation::get_vertex_dof_index( + dof_handler, + vertex_index, + most_dominating_fe_index, + identities[i].first); + const types::global_dof_index slave_dof_index = + dealii::internal::DoFAccessorImplementation:: + Implementation::get_vertex_dof_index( + dof_handler, + vertex_index, + other_fe_index, + identities[i].second); + + // on subdomain boundaries, we will + // encounter invalid DoFs on ghost cells, + // for which we have not yet distributed + // valid indices. depending on which finte + // element is dominating the other on this + // interface, we either have to constrain + // the valid to the invalid indices, or vice + // versa. + // + // we only store an identity if we are about + // to overwrite a valid DoF. we will skip + // constraining invalid DoFs for now, and + // consider them later in Phase 5. + if (slave_dof_index != numbers::invalid_dof_index) + { + // if the DoF indices of both elements + // are already distributed, i.e., both + // of these 'fe_indices' are associated + // with a locally owned cell, then we + // should either not have a dof_identity + // yet, or it must come out here to be + // exactly as we had computed before + if (master_dof_index != + numbers::invalid_dof_index) + Assert((dof_identities.find( + master_dof_index) == + dof_identities.end()) || + (dof_identities[slave_dof_index] == + master_dof_index), + ExcInternalError()); + + dof_identities[slave_dof_index] = + master_dof_index; + } + } + } } } @@ -815,6 +832,10 @@ namespace internal dof_handler.get_fe(fe_index_2).dofs_per_line) && (dof_handler.get_fe(fe_index_1).dofs_per_line > 0)) { + // the number of dofs per line is identical + const unsigned int dofs_per_line = + dof_handler.get_fe(fe_index_1).dofs_per_line; + ensure_existence_of_dof_identities<1>( dof_handler.get_fe(fe_index_1), dof_handler.get_fe(fe_index_2), @@ -823,13 +844,10 @@ namespace internal // first condition for this is that indeed there are // n identities if (line_dof_identities[fe_index_1][fe_index_2] - ->size() == - dof_handler.get_fe(fe_index_1).dofs_per_line) + ->size() == dofs_per_line) { unsigned int i = 0; - for (; i < dof_handler.get_fe(fe_index_1) - .dofs_per_line; - ++i) + for (; i < dofs_per_line; ++i) if (((*(line_dof_identities[fe_index_1] [fe_index_2]))[i] .first != i) && @@ -839,8 +857,7 @@ namespace internal // not an identity break; - if (i == dof_handler.get_fe(fe_index_1) - .dofs_per_line) + if (i == dofs_per_line) { // The line dofs (i.e., the ones interior to // a line) of these two finite elements are @@ -851,17 +868,42 @@ namespace internal --unique_sets_of_dofs; - for (unsigned int j = 0; - j < dof_handler.get_fe(fe_index_1) - .dofs_per_line; + // determine which one of both finite + // elements is the dominating one. + const std::set fe_indices{ + fe_index_1, fe_index_2}; + + unsigned int dominating_fe_index = + dof_handler.get_fe_collection() + .find_dominating_fe_in_subset( + fe_indices, /*codim=*/dim - 1); + unsigned int other_fe_index = + numbers::invalid_unsigned_int; + + if (dominating_fe_index != + numbers::invalid_unsigned_int) + other_fe_index = + (dominating_fe_index == fe_index_1) ? + fe_index_2 : + fe_index_1; + else + { + // if we haven't found a dominating + // finite element, choose the one with + // the lower index to be dominating + dominating_fe_index = fe_index_1; + other_fe_index = fe_index_2; + } + + for (unsigned int j = 0; j < dofs_per_line; ++j) { const types::global_dof_index - master_dof_index = - line->dof_index(j, fe_index_1); + master_dof_index = line->dof_index( + j, dominating_fe_index); const types::global_dof_index slave_dof_index = - line->dof_index(j, fe_index_2); + line->dof_index(j, other_fe_index); // on subdomain boundaries, we will // encounter invalid DoFs on ghost @@ -1427,79 +1469,99 @@ namespace internal if (n_active_fe_indices > 1) { - const unsigned int first_fe_index = + const std::set fe_indices = dealii::internal::DoFAccessorImplementation:: - Implementation::nth_active_vertex_fe_index(dof_handler, - vertex_index, - 0); - - // loop over all the other FEs with which we want - // to identify the DoF indices of the first FE of - for (unsigned int f = 1; f < n_active_fe_indices; ++f) + Implementation::get_active_vertex_fe_indices( + dof_handler, vertex_index); + + // find out which is the most dominating finite + // element of the ones that are used on this vertex + const unsigned int most_dominating_fe_index = + dof_handler.get_fe_collection() + .find_dominating_fe_in_subset(fe_indices, + /*codim=*/dim); + + // if we found the most dominating element, then use + // this to eliminate some of the degrees of freedom + // by identification. otherwise, the code that + // computes hanging node constraints will have to + // deal with it by computing appropriate constraints + // along this face/edge + if (most_dominating_fe_index != + numbers::invalid_unsigned_int) { - const unsigned int other_fe_index = - dealii::internal::DoFAccessorImplementation:: - Implementation::nth_active_vertex_fe_index( - dof_handler, vertex_index, f); - - // make sure the entry in the equivalence - // table exists - ensure_existence_of_dof_identities<0>( - dof_handler.get_fe(first_fe_index), - dof_handler.get_fe(other_fe_index), - vertex_dof_identities[first_fe_index] - [other_fe_index]); - - // then loop through the identities we - // have. first get the global numbers of the - // dofs we want to identify and make sure they - // are not yet constrained to anything else, - // except for to each other. use the rule that - // we will always constrain the dof with the - // higher fe index to the one with the lower, - // to avoid circular reasoning. - DoFIdentities &identities = - *vertex_dof_identities[first_fe_index] - [other_fe_index]; - for (unsigned int i = 0; i < identities.size(); ++i) - { - const types::global_dof_index lower_dof_index = - dealii::internal::DoFAccessorImplementation:: - Implementation::get_vertex_dof_index( - dof_handler, - vertex_index, - first_fe_index, - identities[i].first); - const types::global_dof_index higher_dof_index = - dealii::internal::DoFAccessorImplementation:: - Implementation::get_vertex_dof_index( - dof_handler, - vertex_index, - other_fe_index, - identities[i].second); - - // check if we are on an interface between - // a locally owned and a ghost cell on which - // we need to work on. - // - // all degrees of freedom belonging to - // dominating fe indices or to a processor with - // a higher rank have been set at this point - // (either in Phase 2, or after the first ghost - // exchange in Phase 5). thus, we only have to - // set the indices of degrees of freedom that - // have been previously flagged invalid. - if ((higher_dof_index == - numbers::invalid_dof_index) && - (lower_dof_index != numbers::invalid_dof_index)) - dealii::internal::DoFAccessorImplementation:: - Implementation::set_vertex_dof_index( - dof_handler, - vertex_index, - other_fe_index, - identities[i].second, - lower_dof_index); - } + // loop over the indices of all the finite + // elements that are not dominating, and + // identify their dofs to the most dominating + // one + for (const auto &other_fe_index : fe_indices) + if (other_fe_index != most_dominating_fe_index) + { + // make sure the entry in the equivalence + // table exists + ensure_existence_of_dof_identities<0>( + dof_handler.get_fe(most_dominating_fe_index), + dof_handler.get_fe(other_fe_index), + vertex_dof_identities[most_dominating_fe_index] + [other_fe_index]); + + // then loop through the identities we + // have. first get the global numbers of the + // dofs we want to identify and make sure they + // are not yet constrained to anything else, + // except for to each other. use the rule that + // we will always constrain the dof with the + // higher fe index to the one with the lower, + // to avoid circular reasoning. + DoFIdentities &identities = + *vertex_dof_identities[most_dominating_fe_index] + [other_fe_index]; + for (unsigned int i = 0; i < identities.size(); + ++i) + { + const types::global_dof_index + master_dof_index = dealii::internal:: + DoFAccessorImplementation:: + Implementation::get_vertex_dof_index( + dof_handler, + vertex_index, + most_dominating_fe_index, + identities[i].first); + const types::global_dof_index + slave_dof_index = dealii::internal:: + DoFAccessorImplementation:: + Implementation::get_vertex_dof_index( + dof_handler, + vertex_index, + other_fe_index, + identities[i].second); + + // check if we are on an interface between + // a locally owned and a ghost cell on which + // we need to work on. + // + // all degrees of freedom belonging to + // dominating fe indices or to a processor + // with a higher rank have been set at this + // point (either in Phase 2, or after the + // first ghost exchange in Phase 5). thus, + // we only have to set the indices of + // degrees of freedom that have been + // previously flagged invalid. + if ((slave_dof_index == + numbers::invalid_dof_index) && + (master_dof_index != + numbers::invalid_dof_index)) + dealii::internal:: + DoFAccessorImplementation:: + Implementation::set_vertex_dof_index( + dof_handler, + vertex_index, + other_fe_index, + identities[i].second, + master_dof_index); + } + } } } } @@ -1590,6 +1652,10 @@ namespace internal dof_handler.get_fe(fe_index_2).dofs_per_line) && (dof_handler.get_fe(fe_index_1).dofs_per_line > 0)) { + // the number of dofs per line is identical + const unsigned int dofs_per_line = + dof_handler.get_fe(fe_index_1).dofs_per_line; + ensure_existence_of_dof_identities<1>( dof_handler.get_fe(fe_index_1), dof_handler.get_fe(fe_index_2), @@ -1598,13 +1664,10 @@ namespace internal // first condition for this is that indeed there are // n identities if (line_dof_identities[fe_index_1][fe_index_2] - ->size() == - dof_handler.get_fe(fe_index_1).dofs_per_line) + ->size() == dofs_per_line) { unsigned int i = 0; - for (; i < dof_handler.get_fe(fe_index_1) - .dofs_per_line; - ++i) + for (; i < dofs_per_line; ++i) if (((*(line_dof_identities[fe_index_1] [fe_index_2]))[i] .first != i) && @@ -1614,8 +1677,7 @@ namespace internal // not an identity break; - if (i == dof_handler.get_fe(fe_index_1) - .dofs_per_line) + if (i == dofs_per_line) { // The line dofs (i.e., the ones interior to // a line) of these two finite elements are @@ -1626,17 +1688,42 @@ namespace internal --unique_sets_of_dofs; - for (unsigned int j = 0; - j < dof_handler.get_fe(fe_index_1) - .dofs_per_line; + // determine which one of both finite + // elements is the dominating one. + const std::set fe_indices{ + fe_index_1, fe_index_2}; + + unsigned int dominating_fe_index = + dof_handler.get_fe_collection() + .find_dominating_fe_in_subset( + fe_indices, /*codim*/ dim - 1); + unsigned int other_fe_index = + numbers::invalid_unsigned_int; + + if (dominating_fe_index != + numbers::invalid_unsigned_int) + other_fe_index = + (dominating_fe_index == fe_index_1) ? + fe_index_2 : + fe_index_1; + else + { + // if we haven't found a dominating + // finite element, choose the one with + // the lower index to be dominating + dominating_fe_index = fe_index_1; + other_fe_index = fe_index_2; + } + + for (unsigned int j = 0; j < dofs_per_line; ++j) { const types::global_dof_index - master_dof_index = - line->dof_index(j, fe_index_1); + master_dof_index = line->dof_index( + j, dominating_fe_index); const types::global_dof_index slave_dof_index = - line->dof_index(j, fe_index_2); + line->dof_index(j, other_fe_index); // check if we are on an interface // between a locally owned and a ghost diff --git a/tests/fe/fe_nothing.output b/tests/fe/fe_nothing.output index f7f02f522c..16e99b1a7b 100644 --- a/tests/fe/fe_nothing.output +++ b/tests/fe/fe_nothing.output @@ -1,9 +1,9 @@ DEAL::2cells: 2d, p1=2, p2=1 - 7 = 0 - 11 = 0 + 9 = 0 + 12 = 0 DEAL::2cells: 3d, p1=2, p2=1 - 20 = 0 - 24 = 0 - 28 = 0 - 32 = 0 + 27 = 0 + 30 = 0 + 33 = 0 + 36 = 0 diff --git a/tests/hp/dof_renumbering_04.output b/tests/hp/dof_renumbering_04.output index d21667ff59..6d4333ebc9 100644 --- a/tests/hp/dof_renumbering_04.output +++ b/tests/hp/dof_renumbering_04.output @@ -15,43 +15,43 @@ DEAL:1d::Cell 4.6 -- 49 48 57 56 55 54 53 52 51 50 DEAL:1d::Cell 4.7 -- 57 56 65 64 63 62 61 60 59 58 DEAL:2d::FESystem<2>[FE_Q<2>(2)^2-FE_DGQ<2>(1)^2] DEAL:2d::FESystem<2>[FE_Q<2>(1)^2-FE_DGQ<2>(2)^2] -DEAL:2d::Cell 1.1 -- 37 36 115 114 135 134 112 113 8 0 1 2 3 4 5 6 7 17 9 10 11 12 13 14 15 16 -DEAL:2d::Cell 1.2 -- 313 312 135 134 293 292 195 194 139 140 141 142 143 144 196 197 145 146 147 148 149 150 151 152 160 168 -DEAL:2d::Cell 1.3 -- 135 134 112 113 195 194 95 94 66 58 59 60 61 62 63 64 65 75 67 68 69 70 71 72 73 74 -DEAL:2d::Cell 1.4 -- 314 315 313 312 419 416 414 415 316 317 318 319 320 321 417 418 331 322 323 324 325 326 327 328 329 330 -DEAL:2d::Cell 1.5 -- 313 312 293 292 414 415 333 332 294 295 296 297 298 299 300 301 311 302 303 304 305 306 307 308 309 310 -DEAL:2d::Cell 1.6 -- 419 416 414 415 445 438 434 435 420 421 422 423 417 418 439 440 433 424 425 426 427 428 429 430 431 432 -DEAL:2d::Cell 1.7 -- 414 415 333 332 434 435 357 356 351 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 -DEAL:2d::Cell 1.8 -- 293 292 195 194 333 332 231 230 198 199 200 201 196 197 232 233 202 211 203 204 205 206 207 208 209 210 -DEAL:2d::Cell 1.9 -- 195 194 95 94 231 230 251 250 84 76 77 78 79 80 81 82 83 93 85 86 87 88 89 90 91 92 -DEAL:2d::Cell 1.10 -- 333 332 231 230 357 356 352 353 234 235 236 237 232 233 238 239 249 240 241 242 243 244 245 246 247 248 -DEAL:2d::Cell 1.11 -- 231 230 251 250 352 353 355 354 220 212 213 214 215 216 217 218 219 229 221 222 223 224 225 226 227 228 +DEAL:2d::Cell 1.1 -- 37 36 115 114 134 135 112 113 8 0 1 2 3 4 5 6 7 17 9 10 11 12 13 14 15 16 +DEAL:2d::Cell 1.2 -- 313 312 134 135 293 292 212 213 151 150 149 148 147 146 215 214 145 144 143 142 141 140 139 138 152 160 +DEAL:2d::Cell 1.3 -- 134 135 112 113 212 213 95 94 66 58 59 60 61 62 63 64 65 75 67 68 69 70 71 72 73 74 +DEAL:2d::Cell 1.4 -- 314 315 313 312 419 416 414 415 317 318 319 320 321 322 417 418 331 323 324 325 326 327 328 329 330 316 +DEAL:2d::Cell 1.5 -- 313 312 293 292 414 415 354 355 294 295 296 297 298 299 300 301 311 302 303 304 305 306 307 308 309 310 +DEAL:2d::Cell 1.6 -- 419 416 414 415 438 445 436 437 420 421 422 423 417 418 439 440 433 424 425 426 427 428 429 430 431 432 +DEAL:2d::Cell 1.7 -- 414 415 354 355 436 437 356 357 372 371 370 369 368 367 366 365 364 373 363 362 361 360 359 358 392 383 +DEAL:2d::Cell 1.8 -- 293 292 212 213 354 355 230 231 216 217 218 219 215 214 233 232 220 229 221 222 223 224 225 226 227 228 +DEAL:2d::Cell 1.9 -- 212 213 95 94 230 231 251 250 84 76 77 78 79 80 81 82 83 93 85 86 87 88 89 90 91 92 +DEAL:2d::Cell 1.10 -- 354 355 230 231 356 357 352 353 234 235 236 237 233 232 238 239 249 240 241 242 243 244 245 246 247 248 +DEAL:2d::Cell 1.11 -- 230 231 251 250 352 353 333 332 202 194 195 196 197 198 199 200 201 211 203 204 205 206 207 208 209 210 DEAL:2d::Cell 1.12 -- 115 114 273 272 112 113 270 271 121 122 123 124 133 125 116 117 128 129 130 131 132 127 126 120 119 118 DEAL:2d::Cell 1.13 -- 273 272 397 396 270 271 394 395 274 275 276 277 278 279 280 291 281 282 283 284 285 286 287 288 289 290 DEAL:2d::Cell 1.14 -- 112 113 270 271 95 94 251 250 96 97 98 99 116 117 100 101 102 111 103 104 105 106 107 108 109 110 -DEAL:2d::Cell 1.15 -- 270 271 394 395 251 250 355 354 252 253 254 255 256 257 258 259 269 260 261 262 263 264 265 266 267 268 -DEAL:2d::Cell 1.16 -- 445 438 434 435 441 442 436 437 459 446 447 458 439 440 444 443 448 449 450 451 452 453 454 455 456 457 -DEAL:2d::Cell 1.17 -- 434 435 357 356 436 437 352 353 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 382 392 391 -DEAL:2d::Cell 1.18 -- 441 442 436 437 397 396 394 395 398 399 400 401 444 443 402 403 413 404 405 406 407 408 409 410 411 412 -DEAL:2d::Cell 1.19 -- 436 437 352 353 394 395 355 354 390 389 388 387 386 385 384 383 393 381 380 379 378 377 376 375 374 373 -DEAL:2d::Cell 2.0 -- 314 315 173 172 174 175 170 171 183 184 193 185 186 187 177 176 190 191 192 189 188 182 181 180 179 178 -DEAL:2d::Cell 2.1 -- 173 172 37 36 170 171 38 39 40 41 42 43 44 45 46 57 47 48 49 50 51 52 53 54 55 56 -DEAL:2d::Cell 2.2 -- 174 175 170 171 313 312 137 136 165 164 163 162 177 176 161 169 159 158 157 156 155 154 153 166 167 138 -DEAL:2d::Cell 2.3 -- 170 171 38 39 137 136 135 134 26 18 19 20 21 22 23 24 25 35 27 28 29 30 31 32 33 34 +DEAL:2d::Cell 1.15 -- 270 271 394 395 251 250 333 332 252 253 254 255 256 257 258 259 269 260 261 262 263 264 265 266 267 268 +DEAL:2d::Cell 1.16 -- 438 445 436 437 441 442 435 434 459 451 450 449 439 440 443 444 446 447 448 452 453 454 455 456 457 458 +DEAL:2d::Cell 1.17 -- 436 437 356 357 435 434 352 353 391 390 389 388 387 386 385 384 393 382 381 380 379 378 377 376 375 374 +DEAL:2d::Cell 1.18 -- 441 442 435 434 397 396 394 395 398 399 400 401 443 444 402 403 413 404 405 406 407 408 409 410 411 412 +DEAL:2d::Cell 1.19 -- 435 434 352 353 394 395 333 332 334 335 336 337 338 339 340 341 351 342 343 344 345 346 347 348 349 350 +DEAL:2d::Cell 2.0 -- 314 315 173 172 174 177 171 170 179 180 181 182 183 184 175 176 186 187 188 189 190 191 192 185 193 178 +DEAL:2d::Cell 2.1 -- 173 172 37 36 171 170 38 39 40 41 42 43 44 45 46 57 47 48 49 50 51 52 53 54 55 56 +DEAL:2d::Cell 2.2 -- 174 177 171 170 313 312 136 137 168 167 166 165 175 176 164 163 162 161 169 159 158 157 156 155 154 153 +DEAL:2d::Cell 2.3 -- 171 170 38 39 136 137 134 135 26 18 19 20 21 22 23 24 25 35 27 28 29 30 31 32 33 34 DEAL:3d::FESystem<3>[FE_Q<3>(2)^2-FE_DGQ<3>(1)^2] DEAL:3d::FESystem<3>[FE_Q<3>(1)^2-FE_DGQ<3>(2)^2] -DEAL:3d::Cell 1.1 -- 783 782 571 555 588 589 528 529 650 651 530 531 525 524 526 527 554 553 552 551 550 549 548 547 546 545 544 543 532 533 534 535 536 537 538 539 540 541 542 556 586 585 584 583 582 581 580 579 578 577 576 575 574 573 572 587 570 569 568 567 566 565 564 563 562 561 560 559 558 557 -DEAL:3d::Cell 1.2 -- 429 428 588 589 185 132 98 99 334 335 525 524 110 109 96 97 133 134 135 136 137 138 139 140 104 103 102 111 217 216 105 106 141 142 155 144 145 146 147 148 143 150 151 152 153 154 131 119 118 117 108 107 116 115 112 113 114 120 121 122 123 124 125 126 127 128 129 130 149 169 -DEAL:3d::Cell 1.3 -- 588 589 528 529 98 99 186 187 525 524 526 527 96 97 100 101 188 189 190 191 192 193 194 195 196 197 213 199 200 201 202 203 204 205 206 207 208 209 210 211 212 198 156 157 158 159 160 161 162 163 164 165 166 167 168 184 170 171 172 173 174 175 176 177 178 179 180 181 182 183 -DEAL:3d::Cell 1.4 -- 477 476 650 651 334 335 525 524 250 246 219 220 230 229 214 215 262 266 265 264 259 258 217 216 252 253 254 255 256 257 228 227 260 261 274 263 226 225 224 231 268 269 270 271 272 273 223 222 232 233 234 235 236 237 238 239 240 251 241 242 243 244 245 247 248 249 267 304 288 305 -DEAL:3d::Cell 1.5 -- 650 651 530 531 525 524 526 527 219 220 306 307 214 215 218 221 308 309 310 311 312 313 314 315 316 317 333 319 320 321 322 323 324 325 326 327 328 329 330 331 332 318 275 276 277 278 279 280 281 282 283 284 285 286 287 303 289 290 291 292 293 294 295 296 297 298 299 300 301 302 -DEAL:3d::Cell 1.6 -- 334 335 525 524 110 109 96 97 230 229 214 215 8 17 38 39 104 103 102 111 217 216 105 106 16 15 14 13 228 227 12 11 226 225 224 231 10 9 18 7 6 5 4 3 223 222 2 1 108 107 0 27 36 35 34 33 32 31 30 29 28 37 26 25 24 23 22 21 20 19 -DEAL:3d::Cell 1.7 -- 525 524 526 527 96 97 100 101 214 215 218 221 38 39 65 64 63 62 61 60 59 58 57 56 55 54 53 66 52 51 50 49 48 47 46 45 44 43 42 41 40 80 94 93 92 91 90 89 88 87 86 85 84 83 82 81 95 79 78 77 76 75 74 73 72 71 70 69 68 67 -DEAL:3d::Cell 2.0 -- 759 745 784 789 733 732 778 779 731 730 780 781 713 714 775 774 744 743 742 741 740 739 735 726 725 724 723 720 719 716 712 715 736 737 738 746 734 729 728 727 772 771 770 769 768 767 717 718 766 765 721 722 764 763 762 761 760 773 758 757 756 755 754 753 752 751 750 749 748 747 -DEAL:3d::Cell 2.1 -- 784 789 783 782 778 779 786 787 780 781 788 785 775 774 777 776 843 806 805 804 803 802 801 800 799 798 807 797 796 795 794 793 792 791 790 815 825 826 827 828 829 830 831 832 842 834 835 836 837 838 839 840 841 833 808 809 810 811 812 813 814 824 816 817 818 819 820 821 822 823 -DEAL:3d::Cell 2.2 -- 733 732 778 779 429 428 594 595 713 714 775 774 438 437 590 591 449 445 444 442 735 726 441 440 436 435 434 439 712 715 433 432 734 729 728 727 446 447 448 450 451 452 443 474 717 718 463 473 472 471 430 431 470 469 468 467 466 465 464 475 462 461 460 459 458 457 456 455 454 453 -DEAL:3d::Cell 2.3 -- 778 779 786 787 594 595 588 589 775 774 777 776 590 591 593 592 617 616 615 614 613 612 611 610 609 608 607 618 606 605 604 603 602 601 600 599 598 597 596 633 648 647 646 645 644 643 642 641 640 639 638 637 636 635 634 649 632 631 630 629 628 627 626 625 624 623 622 621 620 619 -DEAL:3d::Cell 2.4 -- 731 730 780 781 713 714 775 774 477 476 656 657 478 479 652 653 725 724 723 720 719 716 712 715 499 498 497 496 495 494 483 484 493 492 491 490 487 486 485 482 489 488 500 522 511 521 480 481 721 722 520 519 518 517 516 515 514 513 512 523 510 509 508 507 506 505 504 503 502 501 -DEAL:3d::Cell 2.5 -- 780 781 788 785 775 774 777 776 656 657 650 651 652 653 655 654 679 678 677 676 675 674 673 672 671 670 669 680 668 667 666 665 664 663 662 661 660 659 658 695 710 709 708 707 706 705 704 703 702 701 700 699 698 697 696 711 694 693 692 691 690 689 688 687 686 685 684 683 682 681 -DEAL:3d::Cell 2.6 -- 713 714 775 774 438 437 590 591 478 479 652 653 334 335 372 373 436 435 434 439 712 715 433 432 351 350 349 348 483 484 347 346 487 486 485 482 345 344 352 343 342 341 340 339 480 481 338 337 430 431 336 361 370 369 368 367 366 365 364 363 362 371 360 359 358 357 356 355 354 353 -DEAL:3d::Cell 2.7 -- 775 774 777 776 590 591 593 592 652 653 655 654 372 373 525 524 398 397 396 395 394 393 392 391 390 389 388 387 386 399 385 384 383 382 381 380 379 378 377 376 375 374 413 426 425 424 423 422 421 420 419 418 417 416 415 414 427 412 411 410 409 408 407 406 405 404 403 402 401 400 +DEAL:3d::Cell 1.1 -- 782 783 547 554 651 650 528 529 589 588 530 531 524 525 526 527 553 552 551 550 549 548 555 546 545 544 541 532 533 534 535 536 537 538 539 540 543 542 571 586 585 584 583 582 581 580 579 578 577 576 575 574 573 572 587 570 569 568 567 566 565 564 563 562 561 560 559 558 557 556 +DEAL:3d::Cell 1.2 -- 428 429 651 650 305 250 218 219 335 334 524 525 230 231 214 215 251 252 253 254 255 256 257 258 228 227 226 225 217 216 224 223 259 260 261 276 263 264 265 266 267 268 269 270 262 272 273 274 275 249 229 222 232 233 234 235 236 237 238 239 240 241 242 243 244 245 248 247 246 271 +DEAL:3d::Cell 1.3 -- 651 650 528 529 218 219 290 306 524 525 526 527 214 215 220 221 307 308 309 310 311 312 313 314 315 316 317 333 319 320 321 322 323 324 325 326 327 328 329 330 331 332 318 277 278 279 280 281 282 283 284 285 286 287 288 289 304 291 292 293 294 295 296 297 298 299 300 301 302 303 +DEAL:3d::Cell 1.4 -- 476 477 589 588 335 334 524 525 186 132 101 98 104 103 97 96 133 134 135 136 137 138 217 216 139 140 141 142 156 144 110 111 145 146 147 148 102 108 105 109 149 150 151 152 153 143 107 106 154 155 117 131 116 115 118 114 113 112 119 120 121 122 123 124 125 126 127 128 129 130 +DEAL:3d::Cell 1.5 -- 589 588 530 531 524 525 526 527 101 98 185 170 97 96 100 99 187 188 189 190 191 192 193 194 195 196 197 213 199 200 201 202 203 204 205 206 207 208 209 210 211 212 198 157 158 159 160 161 162 163 164 165 166 167 168 169 184 171 172 173 174 175 176 177 178 179 180 181 182 183 +DEAL:3d::Cell 1.6 -- 335 334 524 525 230 231 214 215 104 103 97 96 8 17 39 38 228 227 226 225 217 216 224 223 16 15 14 13 110 111 12 11 102 108 105 109 10 9 18 7 6 5 4 3 107 106 2 1 229 222 0 27 36 35 34 33 32 31 30 29 28 37 26 25 24 23 22 21 20 19 +DEAL:3d::Cell 1.7 -- 524 525 526 527 214 215 220 221 97 96 100 99 39 38 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 66 80 94 93 92 91 90 89 88 87 86 85 84 83 82 81 95 79 78 77 76 75 74 73 72 71 70 69 68 67 +DEAL:3d::Cell 2.0 -- 746 759 789 788 732 733 778 779 734 735 780 781 713 714 775 774 739 740 741 742 743 744 731 730 728 727 729 724 723 720 715 712 738 737 736 745 716 717 718 719 772 771 770 769 768 767 721 722 766 765 725 726 764 763 762 761 760 773 758 757 756 755 754 753 752 751 750 749 748 747 +DEAL:3d::Cell 2.1 -- 789 788 782 783 778 779 787 786 780 781 784 785 775 774 777 776 843 806 805 804 803 802 801 800 799 798 790 797 796 795 794 793 792 791 807 815 825 826 827 828 829 830 831 832 842 834 835 836 837 838 839 840 841 833 808 809 810 811 812 813 814 824 816 817 818 819 820 821 822 823 +DEAL:3d::Cell 2.2 -- 732 733 778 779 428 429 654 655 713 714 775 774 439 438 652 653 448 444 443 442 731 730 441 440 437 436 435 434 715 712 433 432 716 717 718 719 445 446 447 449 450 451 452 474 721 722 463 473 472 471 430 431 470 469 468 467 466 465 464 475 462 461 460 459 458 457 456 455 454 453 +DEAL:3d::Cell 2.3 -- 778 779 787 786 654 655 651 650 775 774 777 776 652 653 656 657 679 678 677 676 675 674 673 672 671 670 669 658 668 659 660 661 662 663 664 665 666 667 680 695 710 709 708 707 706 705 704 703 702 701 700 699 698 697 696 711 694 693 692 691 690 689 688 687 686 685 684 683 682 681 +DEAL:3d::Cell 2.4 -- 734 735 780 781 713 714 775 774 476 477 592 593 478 479 590 591 728 727 729 724 723 720 715 712 499 498 497 496 495 494 483 484 493 492 491 490 487 486 485 482 489 488 500 522 511 521 480 481 725 726 520 519 518 517 516 515 514 513 512 523 510 509 508 507 506 505 504 503 502 501 +DEAL:3d::Cell 2.5 -- 780 781 784 785 775 774 777 776 592 593 589 588 590 591 594 595 617 616 615 614 613 612 611 610 609 608 607 596 606 597 598 599 600 601 602 603 604 605 618 633 648 647 646 645 644 643 642 641 640 639 638 637 636 635 634 649 632 631 630 629 628 627 626 625 624 623 622 621 620 619 +DEAL:3d::Cell 2.6 -- 713 714 775 774 439 438 652 653 478 479 590 591 335 334 373 372 437 436 435 434 715 712 433 432 351 350 349 348 483 484 347 346 487 486 485 482 345 344 343 342 341 340 339 338 480 481 337 336 430 431 352 361 370 369 368 367 366 365 364 363 362 371 360 359 358 357 356 355 354 353 +DEAL:3d::Cell 2.7 -- 775 774 777 776 652 653 656 657 590 591 594 595 373 372 524 525 398 397 396 395 394 393 392 391 390 389 388 387 386 385 384 383 382 381 380 379 378 377 376 375 374 399 413 426 425 424 423 422 421 420 419 418 417 416 415 414 427 412 411 410 409 408 407 406 405 404 403 402 401 400 diff --git a/tests/hp/dof_renumbering_04.output.2 b/tests/hp/dof_renumbering_04.output.2 deleted file mode 100644 index d12b02aa10..0000000000 --- a/tests/hp/dof_renumbering_04.output.2 +++ /dev/null @@ -1,57 +0,0 @@ - -DEAL:1d::FESystem<1>[FE_Q<1>(2)^2-FE_DGQ<1>(1)^2] -DEAL:1d::FESystem<1>[FE_Q<1>(1)^2-FE_DGQ<1>(2)^2] -DEAL:1d::Cell 3.4 -- 65 64 73 72 71 70 69 68 67 66 -DEAL:1d::Cell 3.5 -- 73 72 81 80 79 78 77 76 75 74 -DEAL:1d::Cell 3.6 -- 81 80 89 88 87 86 85 84 83 82 -DEAL:1d::Cell 3.7 -- 89 88 97 96 95 94 93 92 91 90 -DEAL:1d::Cell 4.0 -- 7 6 9 8 5 4 3 2 1 0 -DEAL:1d::Cell 4.1 -- 9 8 17 16 15 14 13 12 11 10 -DEAL:1d::Cell 4.2 -- 17 16 25 24 23 22 21 20 19 18 -DEAL:1d::Cell 4.3 -- 25 24 33 32 31 30 29 28 27 26 -DEAL:1d::Cell 4.4 -- 33 32 41 40 39 38 37 36 35 34 -DEAL:1d::Cell 4.5 -- 41 40 49 48 47 46 45 44 43 42 -DEAL:1d::Cell 4.6 -- 49 48 57 56 55 54 53 52 51 50 -DEAL:1d::Cell 4.7 -- 57 56 65 64 63 62 61 60 59 58 -DEAL:2d::FESystem<2>[FE_Q<2>(2)^2-FE_DGQ<2>(1)^2] -DEAL:2d::FESystem<2>[FE_Q<2>(1)^2-FE_DGQ<2>(2)^2] -DEAL:2d::Cell 1.1 -- 37 36 115 114 135 134 112 113 8 0 1 2 3 4 5 6 7 17 9 10 11 12 13 14 15 16 -DEAL:2d::Cell 1.2 -- 313 312 135 134 293 292 195 194 139 140 141 142 143 144 196 197 145 146 147 148 149 150 151 152 160 168 -DEAL:2d::Cell 1.3 -- 135 134 112 113 195 194 95 94 66 58 59 60 61 62 63 64 65 75 67 68 69 70 71 72 73 74 -DEAL:2d::Cell 1.4 -- 314 315 313 312 419 416 414 415 316 317 318 319 320 321 417 418 331 322 323 324 325 326 327 328 329 330 -DEAL:2d::Cell 1.5 -- 313 312 293 292 414 415 333 332 294 295 296 297 298 299 300 301 311 302 303 304 305 306 307 308 309 310 -DEAL:2d::Cell 1.6 -- 419 416 414 415 445 438 434 435 420 421 422 423 417 418 439 440 433 424 425 426 427 428 429 430 431 432 -DEAL:2d::Cell 1.7 -- 414 415 333 332 434 435 357 354 334 351 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 -DEAL:2d::Cell 1.8 -- 293 292 195 194 333 332 231 230 198 199 200 201 196 197 232 233 202 211 203 204 205 206 207 208 209 210 -DEAL:2d::Cell 1.9 -- 195 194 95 94 231 230 251 250 84 76 77 78 79 80 81 82 83 93 85 86 87 88 89 90 91 92 -DEAL:2d::Cell 1.10 -- 333 332 231 230 357 354 352 353 234 235 236 237 232 233 238 239 249 240 241 242 243 244 245 246 247 248 -DEAL:2d::Cell 1.11 -- 231 230 251 250 352 353 355 356 220 212 213 214 215 216 217 218 219 229 221 222 223 224 225 226 227 228 -DEAL:2d::Cell 1.12 -- 115 114 273 272 112 113 270 271 121 122 123 124 133 125 116 117 128 129 130 131 132 127 126 120 119 118 -DEAL:2d::Cell 1.13 -- 273 272 397 396 270 271 394 395 274 275 276 277 278 279 280 291 281 282 283 284 285 286 287 288 289 290 -DEAL:2d::Cell 1.14 -- 112 113 270 271 95 94 251 250 96 97 98 99 116 117 100 101 102 111 103 104 105 106 107 108 109 110 -DEAL:2d::Cell 1.15 -- 270 271 394 395 251 250 355 356 252 253 254 255 256 257 258 259 269 260 261 262 263 264 265 266 267 268 -DEAL:2d::Cell 1.16 -- 445 438 434 435 441 442 436 437 459 446 447 458 439 440 444 443 448 449 450 451 452 453 454 455 456 457 -DEAL:2d::Cell 1.17 -- 434 435 357 354 436 437 352 353 371 370 369 368 367 366 365 364 363 362 361 360 359 358 372 382 392 391 -DEAL:2d::Cell 1.18 -- 441 442 436 437 397 396 394 395 398 399 400 401 444 443 402 403 413 404 405 406 407 408 409 410 411 412 -DEAL:2d::Cell 1.19 -- 436 437 352 353 394 395 355 356 390 389 388 387 386 385 384 383 393 381 380 379 378 377 376 375 374 373 -DEAL:2d::Cell 2.0 -- 314 315 173 172 174 175 170 171 183 184 193 185 186 187 177 176 190 191 192 189 188 182 181 180 179 178 -DEAL:2d::Cell 2.1 -- 173 172 37 36 170 171 38 39 40 41 42 43 44 45 46 57 47 48 49 50 51 52 53 54 55 56 -DEAL:2d::Cell 2.2 -- 174 175 170 171 313 312 137 136 165 164 163 162 177 176 161 169 159 158 157 156 155 154 153 166 167 138 -DEAL:2d::Cell 2.3 -- 170 171 38 39 137 136 135 134 26 18 19 20 21 22 23 24 25 35 27 28 29 30 31 32 33 34 -DEAL:3d::FESystem<3>[FE_Q<3>(2)^2-FE_DGQ<3>(1)^2] -DEAL:3d::FESystem<3>[FE_Q<3>(1)^2-FE_DGQ<3>(2)^2] -DEAL:3d::Cell 1.1 -- 783 782 555 571 589 588 528 529 713 712 530 531 525 524 526 527 554 553 552 551 550 549 548 547 546 545 544 532 543 533 534 535 536 537 538 539 540 541 556 542 586 585 584 583 582 581 580 579 578 577 576 575 574 573 572 587 570 569 568 567 566 565 564 563 562 561 560 559 558 557 -DEAL:3d::Cell 1.2 -- 428 429 589 588 185 132 98 99 335 334 525 524 110 109 96 97 133 134 135 136 137 138 139 140 104 103 111 102 216 217 105 106 141 142 155 144 145 146 147 148 143 150 151 152 153 154 119 131 118 117 108 107 116 115 112 113 120 114 121 122 123 124 125 126 127 128 129 130 149 169 -DEAL:3d::Cell 1.3 -- 589 588 528 529 98 99 186 187 525 524 526 527 96 97 100 101 188 189 190 191 192 193 194 195 196 197 213 199 200 201 202 203 204 205 206 207 208 209 210 211 212 198 156 157 158 159 160 161 162 163 164 165 166 167 168 184 170 171 172 173 174 175 176 177 178 179 180 181 182 183 -DEAL:3d::Cell 1.4 -- 476 477 713 712 335 334 525 524 252 251 218 219 229 230 215 214 253 254 255 256 257 258 216 217 259 260 261 274 263 264 228 227 265 266 267 268 226 225 224 223 269 270 271 272 273 232 231 222 233 234 235 239 250 240 241 244 245 246 247 248 249 243 242 238 237 236 262 304 288 305 -DEAL:3d::Cell 1.5 -- 713 712 530 531 525 524 526 527 218 219 306 307 215 214 220 221 308 309 310 311 312 313 314 315 316 317 333 319 320 321 322 323 324 325 326 327 328 329 330 331 332 318 275 276 277 278 279 280 281 282 283 284 285 286 287 303 289 290 291 292 293 294 295 296 297 298 299 300 301 302 -DEAL:3d::Cell 1.6 -- 335 334 525 524 110 109 96 97 229 230 215 214 8 17 39 38 104 103 111 102 216 217 105 106 16 15 14 13 228 227 12 11 226 225 224 223 10 9 18 7 6 5 4 3 231 222 2 1 108 107 0 27 36 35 34 33 32 31 30 29 28 37 26 25 24 23 22 21 20 19 -DEAL:3d::Cell 1.7 -- 525 524 526 527 96 97 100 101 215 214 220 221 39 38 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 66 80 94 93 92 91 90 89 88 87 86 85 84 83 82 81 95 79 78 77 76 75 74 73 72 71 70 69 68 67 -DEAL:3d::Cell 2.0 -- 684 697 788 787 670 671 778 779 672 673 780 781 651 652 774 775 677 678 679 680 681 682 669 668 666 665 667 662 661 658 653 650 676 675 674 683 654 655 656 657 710 709 708 707 706 705 659 660 704 703 663 664 702 701 700 699 698 711 696 695 694 693 692 691 690 689 688 687 686 685 -DEAL:3d::Cell 2.1 -- 788 787 783 782 778 779 786 785 780 781 789 784 774 775 777 776 843 806 805 804 803 802 801 800 799 798 790 797 796 795 794 793 792 791 807 815 825 826 827 828 829 830 831 832 842 834 835 836 837 838 839 840 841 833 808 809 810 811 812 813 814 824 816 817 818 819 820 821 822 823 -DEAL:3d::Cell 2.2 -- 670 671 778 779 428 429 592 593 651 652 774 775 439 438 590 591 448 444 443 442 669 668 441 440 437 436 435 434 653 650 433 432 654 655 656 657 445 446 447 449 450 451 452 474 659 660 463 473 472 471 430 431 470 469 468 467 466 465 464 475 462 461 460 459 458 457 456 455 454 453 -DEAL:3d::Cell 2.3 -- 778 779 786 785 592 593 589 588 774 775 777 776 590 591 594 595 617 616 615 614 613 612 611 610 609 608 607 596 606 597 598 599 600 601 602 603 604 605 618 633 648 647 646 645 644 643 642 641 640 639 638 637 636 635 634 649 632 631 630 629 628 627 626 625 624 623 622 621 620 619 -DEAL:3d::Cell 2.4 -- 672 673 780 781 651 652 774 775 476 477 716 717 478 479 714 715 666 665 667 662 661 658 653 650 499 498 497 496 495 494 483 484 493 492 491 490 487 486 485 482 489 488 500 522 511 521 480 481 663 664 520 519 518 517 516 515 514 513 512 523 510 509 508 507 506 505 504 503 502 501 -DEAL:3d::Cell 2.5 -- 780 781 789 784 774 775 777 776 716 717 713 712 714 715 718 719 741 740 739 738 737 736 735 734 733 732 731 720 730 721 722 723 724 725 726 727 728 729 742 757 772 771 770 769 768 767 766 765 764 763 762 761 760 759 758 773 756 755 754 753 752 751 750 749 748 747 746 745 744 743 -DEAL:3d::Cell 2.6 -- 651 652 774 775 439 438 590 591 478 479 714 715 335 334 373 372 437 436 435 434 653 650 433 432 351 350 349 348 483 484 347 346 487 486 485 482 345 344 343 342 341 340 339 338 480 481 337 336 430 431 352 361 370 369 368 367 366 365 364 363 362 371 360 359 358 357 356 355 354 353 -DEAL:3d::Cell 2.7 -- 774 775 777 776 590 591 594 595 714 715 718 719 373 372 525 524 398 397 396 395 394 393 392 391 390 389 388 387 386 385 384 383 382 381 380 379 378 377 376 375 374 399 413 426 425 424 423 422 421 420 419 418 417 416 415 414 427 412 411 410 409 408 407 406 405 404 403 402 401 400 diff --git a/tests/hp/dof_renumbering_04.output.clang-libc++ b/tests/hp/dof_renumbering_04.output.clang-libc++ deleted file mode 100644 index 6d25d8f5d9..0000000000 --- a/tests/hp/dof_renumbering_04.output.clang-libc++ +++ /dev/null @@ -1,57 +0,0 @@ - -DEAL:1d::FESystem<1>[FE_Q<1>(2)^2-FE_DGQ<1>(1)^2] -DEAL:1d::FESystem<1>[FE_Q<1>(1)^2-FE_DGQ<1>(2)^2] -DEAL:1d::Cell 3.4 -- 65 64 73 72 71 70 69 68 67 66 -DEAL:1d::Cell 3.5 -- 73 72 81 80 79 78 77 76 75 74 -DEAL:1d::Cell 3.6 -- 81 80 89 88 87 86 85 84 83 82 -DEAL:1d::Cell 3.7 -- 89 88 97 96 95 94 93 92 91 90 -DEAL:1d::Cell 4.0 -- 7 6 9 8 5 4 3 2 1 0 -DEAL:1d::Cell 4.1 -- 9 8 17 16 15 14 13 12 11 10 -DEAL:1d::Cell 4.2 -- 17 16 25 24 23 22 21 20 19 18 -DEAL:1d::Cell 4.3 -- 25 24 33 32 31 30 29 28 27 26 -DEAL:1d::Cell 4.4 -- 33 32 41 40 39 38 37 36 35 34 -DEAL:1d::Cell 4.5 -- 41 40 49 48 47 46 45 44 43 42 -DEAL:1d::Cell 4.6 -- 49 48 57 56 55 54 53 52 51 50 -DEAL:1d::Cell 4.7 -- 57 56 65 64 63 62 61 60 59 58 -DEAL:2d::FESystem<2>[FE_Q<2>(2)^2-FE_DGQ<2>(1)^2] -DEAL:2d::FESystem<2>[FE_Q<2>(1)^2-FE_DGQ<2>(2)^2] -DEAL:2d::Cell 1.1 -- 37 36 115 114 134 135 113 112 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 -DEAL:2d::Cell 1.2 -- 313 312 134 135 293 292 213 212 167 166 165 164 163 162 215 214 161 160 159 158 157 156 155 154 153 152 -DEAL:2d::Cell 1.3 -- 134 135 113 112 213 212 95 94 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 -DEAL:2d::Cell 1.4 -- 315 314 313 312 419 418 415 414 331 330 329 328 327 326 417 416 325 324 323 322 321 320 319 318 317 316 -DEAL:2d::Cell 1.5 -- 313 312 293 292 415 414 354 355 311 310 309 308 307 306 305 304 303 302 301 300 299 298 297 296 295 294 -DEAL:2d::Cell 1.6 -- 419 418 415 414 445 444 437 436 433 432 431 430 417 416 443 442 429 428 427 426 425 424 423 422 421 420 -DEAL:2d::Cell 1.7 -- 415 414 354 355 437 436 357 356 393 392 391 390 389 388 387 386 385 384 383 382 381 380 379 378 377 376 -DEAL:2d::Cell 1.8 -- 293 292 213 212 354 355 231 230 229 228 227 226 215 214 233 232 225 224 223 222 221 220 219 218 217 216 -DEAL:2d::Cell 1.9 -- 213 212 95 94 231 230 251 250 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 -DEAL:2d::Cell 1.10 -- 354 355 231 230 357 356 352 353 249 248 247 246 233 232 245 244 243 242 241 240 239 238 237 236 235 234 -DEAL:2d::Cell 1.11 -- 231 230 251 250 352 353 333 332 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 -DEAL:2d::Cell 1.12 -- 115 114 273 272 113 112 271 270 133 132 131 130 129 128 117 116 127 126 125 124 123 122 121 120 119 118 -DEAL:2d::Cell 1.13 -- 273 272 397 396 271 270 395 394 291 290 289 288 287 286 285 284 283 282 281 280 279 278 277 276 275 274 -DEAL:2d::Cell 1.14 -- 113 112 271 270 95 94 251 250 111 110 109 108 117 116 107 106 105 104 103 102 101 100 99 98 97 96 -DEAL:2d::Cell 1.15 -- 271 270 395 394 251 250 333 332 269 268 267 266 265 264 263 262 261 260 259 258 257 256 255 254 253 252 -DEAL:2d::Cell 1.16 -- 445 444 437 436 441 440 435 434 459 458 457 456 443 442 439 438 455 454 453 452 451 450 449 448 447 446 -DEAL:2d::Cell 1.17 -- 437 436 357 356 435 434 352 353 369 368 367 366 365 364 363 362 361 360 359 358 370 371 373 374 375 372 -DEAL:2d::Cell 1.18 -- 441 440 435 434 397 396 395 394 413 412 411 410 439 438 409 408 407 406 405 404 403 402 401 400 399 398 -DEAL:2d::Cell 1.19 -- 435 434 352 353 395 394 333 332 351 350 349 348 347 346 345 344 343 342 341 340 339 338 337 336 335 334 -DEAL:2d::Cell 2.0 -- 315 314 173 172 177 176 171 170 193 192 191 190 189 188 175 174 187 186 185 184 183 182 181 180 179 178 -DEAL:2d::Cell 2.1 -- 173 172 37 36 171 170 39 38 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 -DEAL:2d::Cell 2.2 -- 177 176 171 170 313 312 136 137 149 148 147 146 175 174 145 144 143 142 141 140 139 138 150 151 168 169 -DEAL:2d::Cell 2.3 -- 171 170 39 38 136 137 134 135 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 -DEAL:3d::FESystem<3>[FE_Q<3>(2)^2-FE_DGQ<3>(1)^2] -DEAL:3d::FESystem<3>[FE_Q<3>(1)^2-FE_DGQ<3>(2)^2] -DEAL:3d::Cell 1.1 -- 782 783 587 586 650 651 528 529 712 713 530 531 525 524 526 527 579 578 577 576 575 574 573 572 571 570 569 568 567 566 565 564 563 562 561 560 559 558 557 556 555 554 553 552 551 550 549 548 547 546 545 544 543 542 541 540 539 538 537 536 535 534 533 532 580 581 582 583 584 585 -DEAL:3d::Cell 1.2 -- 428 429 650 651 213 212 98 99 334 335 525 524 102 103 96 97 205 204 203 202 201 200 199 198 104 105 106 107 216 217 108 109 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 110 111 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 -DEAL:3d::Cell 1.3 -- 650 651 528 529 98 99 153 152 525 524 526 527 96 97 100 101 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 150 151 172 173 192 193 194 195 196 197 206 207 208 209 210 211 -DEAL:3d::Cell 1.4 -- 476 477 712 713 334 335 525 524 331 330 218 219 222 223 214 215 323 322 321 320 319 318 216 217 317 316 315 314 313 312 224 225 309 308 307 306 226 227 228 229 301 300 299 298 297 296 230 231 293 292 291 290 289 288 287 286 285 284 283 282 281 280 279 278 277 276 275 274 333 272 -DEAL:3d::Cell 1.5 -- 712 713 530 531 525 524 526 527 218 219 271 270 214 215 220 221 267 266 265 264 263 262 261 260 259 258 257 256 255 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 268 269 294 295 302 303 304 305 310 311 324 325 326 327 328 329 332 273 -DEAL:3d::Cell 1.6 -- 334 335 525 524 102 103 96 97 222 223 214 215 37 36 38 39 104 105 106 107 216 217 108 109 35 34 33 32 224 225 31 30 226 227 228 229 29 28 27 26 25 24 23 22 230 231 21 20 110 111 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 -DEAL:3d::Cell 1.7 -- 525 524 526 527 96 97 100 101 214 215 220 221 38 39 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 95 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 94 66 -DEAL:3d::Cell 2.0 -- 649 648 784 785 593 594 778 779 595 596 780 781 588 589 774 775 641 640 639 638 637 636 597 598 599 600 601 602 603 604 590 591 625 624 623 622 605 608 609 592 617 616 615 614 613 612 611 610 619 620 607 606 621 626 627 628 629 630 631 632 633 634 635 642 643 644 645 646 647 618 -DEAL:3d::Cell 2.1 -- 784 785 782 783 778 779 786 787 780 781 788 789 774 775 776 777 843 826 825 824 823 822 821 820 819 818 817 816 815 814 813 812 811 810 809 842 807 806 805 804 803 802 801 800 799 798 797 796 795 794 793 792 791 790 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 808 -DEAL:3d::Cell 2.2 -- 593 594 778 779 428 429 654 655 588 589 774 775 430 431 652 653 471 470 469 468 597 598 467 466 432 433 434 435 590 591 436 437 605 608 609 592 459 458 457 456 455 454 453 452 611 610 475 450 449 448 438 439 445 444 443 442 441 440 446 447 460 461 462 463 464 465 472 473 474 451 -DEAL:3d::Cell 2.3 -- 778 779 786 787 654 655 650 651 774 775 776 777 652 653 656 657 703 702 701 700 699 698 697 696 695 694 693 692 691 690 689 688 687 686 685 684 683 682 681 711 679 678 677 676 675 674 673 672 671 670 669 668 667 666 665 664 663 662 661 660 659 658 704 705 706 707 708 709 710 680 -DEAL:3d::Cell 2.4 -- 595 596 780 781 588 589 774 775 476 477 716 717 478 479 714 715 599 600 601 602 603 604 590 591 519 518 517 516 515 514 480 481 511 510 509 508 482 483 484 485 503 502 501 500 523 498 486 487 607 606 495 494 493 492 491 490 489 488 496 497 504 505 506 507 512 513 520 521 522 499 -DEAL:3d::Cell 2.5 -- 780 781 788 789 774 775 776 777 716 717 712 713 714 715 718 719 765 764 763 762 761 760 759 758 757 756 755 754 753 752 751 750 749 748 747 746 745 744 743 773 741 740 739 738 737 736 735 734 733 732 731 730 729 728 727 726 725 724 723 722 721 720 766 767 768 769 770 771 772 742 -DEAL:3d::Cell 2.6 -- 588 589 774 775 430 431 652 653 478 479 714 715 334 335 372 373 432 433 434 435 590 591 436 437 369 368 367 366 480 481 365 364 482 483 484 485 363 362 361 360 359 358 357 356 486 487 355 354 438 439 353 371 351 350 349 348 347 346 345 344 343 342 341 340 339 338 337 336 370 352 -DEAL:3d::Cell 2.7 -- 774 775 776 777 652 653 656 657 714 715 718 719 372 373 525 524 425 424 423 422 421 420 419 418 417 416 415 414 413 412 411 410 409 408 407 406 405 404 403 402 401 400 427 398 397 396 395 394 393 392 391 390 389 388 387 386 385 384 383 382 381 380 379 378 377 376 375 374 426 399 diff --git a/tests/hp/dof_renumbering_05.output b/tests/hp/dof_renumbering_05.output index 02c1b3a247..5ee617cfd9 100644 --- a/tests/hp/dof_renumbering_05.output +++ b/tests/hp/dof_renumbering_05.output @@ -1,7 +1,7 @@ DEAL:1d::FESystem<1>[FE_Q<1>(2)^2-FE_DGQ<1>(1)^2] DEAL:1d::FESystem<1>[FE_Q<1>(1)^2-FE_DGQ<1>(2)^2] -DEAL:1d::Cell 3.4 -- 67 65 74 73 70 71 68 66 64 69 +DEAL:1d::Cell 3.4 -- 66 64 74 73 71 70 69 68 67 65 DEAL:1d::Cell 3.5 -- 74 73 82 81 79 78 77 76 72 75 DEAL:1d::Cell 3.6 -- 82 81 89 90 87 86 85 84 80 83 DEAL:1d::Cell 3.7 -- 89 90 97 96 95 94 93 92 88 91 @@ -12,46 +12,46 @@ DEAL:1d::Cell 4.3 -- 26 25 34 33 31 30 29 28 24 27 DEAL:1d::Cell 4.4 -- 34 33 42 41 39 38 37 36 32 35 DEAL:1d::Cell 4.5 -- 42 41 50 49 47 46 45 44 40 43 DEAL:1d::Cell 4.6 -- 50 49 58 57 55 54 53 52 48 51 -DEAL:1d::Cell 4.7 -- 58 57 67 65 63 62 61 60 56 59 +DEAL:1d::Cell 4.7 -- 58 57 66 64 63 62 61 60 56 59 DEAL:2d::FESystem<2>[FE_Q<2>(2)^2-FE_DGQ<2>(1)^2] DEAL:2d::FESystem<2>[FE_Q<2>(1)^2-FE_DGQ<2>(2)^2] -DEAL:2d::Cell 1.1 -- 38 41 181 175 113 110 180 172 56 55 40 57 54 51 42 44 52 45 53 50 49 47 48 39 46 43 -DEAL:2d::Cell 1.2 -- 241 239 113 110 212 215 199 198 134 133 102 101 111 100 202 197 109 108 124 135 132 131 95 98 105 104 -DEAL:2d::Cell 1.3 -- 113 110 180 172 199 198 159 161 74 73 60 75 71 70 69 72 58 65 64 68 62 66 61 59 67 63 -DEAL:2d::Cell 1.4 -- 234 237 241 239 362 360 359 350 250 251 248 247 245 249 351 365 236 238 246 244 242 232 235 243 240 233 -DEAL:2d::Cell 1.5 -- 241 239 212 215 359 350 353 358 230 229 214 231 228 225 216 218 226 219 227 224 223 221 222 213 220 217 -DEAL:2d::Cell 1.6 -- 362 360 359 350 444 441 440 447 370 339 338 371 351 365 439 435 369 368 333 336 343 342 354 367 366 334 -DEAL:2d::Cell 1.7 -- 359 350 353 358 440 447 385 379 335 344 348 347 363 337 332 357 355 341 340 349 364 345 356 352 346 361 -DEAL:2d::Cell 1.8 -- 212 215 199 198 353 358 270 273 211 210 209 208 202 197 257 259 207 206 200 204 205 194 201 203 195 196 -DEAL:2d::Cell 1.9 -- 199 198 159 161 270 273 290 293 152 151 138 153 149 148 147 150 136 143 142 146 140 144 139 137 145 141 -DEAL:2d::Cell 1.10 -- 353 358 270 273 385 379 373 377 268 269 266 265 257 259 264 267 252 258 262 261 256 260 254 253 255 263 -DEAL:2d::Cell 1.11 -- 270 273 290 293 373 377 408 381 288 287 272 289 286 283 274 276 284 277 285 282 281 279 280 271 278 275 +DEAL:2d::Cell 1.1 -- 38 41 181 175 83 76 180 172 56 55 40 57 54 51 42 44 52 45 53 50 49 47 48 39 46 43 +DEAL:2d::Cell 1.2 -- 273 270 83 76 250 253 219 237 110 109 108 111 106 102 221 227 99 98 87 96 80 82 105 104 101 90 +DEAL:2d::Cell 1.3 -- 83 76 180 172 219 237 159 161 74 73 60 75 71 70 69 72 58 65 64 68 62 66 61 59 67 63 +DEAL:2d::Cell 1.4 -- 271 278 273 270 405 400 395 399 288 287 272 289 286 283 401 406 274 276 284 277 285 275 281 279 280 282 +DEAL:2d::Cell 1.5 -- 273 270 250 253 395 399 355 390 268 267 252 269 266 263 254 256 264 257 265 262 261 259 260 251 258 255 +DEAL:2d::Cell 1.6 -- 405 400 395 399 448 436 439 447 413 412 410 411 401 406 443 442 408 409 394 404 398 402 396 397 403 407 +DEAL:2d::Cell 1.7 -- 395 399 355 390 439 447 370 389 392 391 354 352 367 366 382 393 388 385 380 379 363 377 356 359 387 384 +DEAL:2d::Cell 1.8 -- 250 253 219 237 355 390 214 240 228 217 213 241 221 227 220 239 238 216 236 235 234 233 232 231 230 229 +DEAL:2d::Cell 1.9 -- 219 237 159 161 214 240 290 293 152 151 138 153 149 148 147 150 136 143 142 146 140 144 139 137 145 141 +DEAL:2d::Cell 1.10 -- 355 390 214 240 370 389 373 361 248 249 246 245 220 239 244 247 222 218 226 243 223 224 225 212 215 242 +DEAL:2d::Cell 1.11 -- 214 240 290 293 373 361 332 335 210 209 196 211 207 206 205 208 194 201 200 204 198 202 197 195 203 199 DEAL:2d::Cell 1.12 -- 181 175 319 318 180 172 310 313 192 191 174 193 190 189 182 186 178 179 187 188 176 183 173 184 177 185 DEAL:2d::Cell 1.13 -- 319 318 423 416 310 313 421 419 330 329 312 331 327 326 324 316 328 317 325 323 314 320 321 322 315 311 DEAL:2d::Cell 1.14 -- 180 172 310 313 159 161 290 293 170 171 168 167 182 186 166 169 154 160 164 163 158 162 156 155 157 165 -DEAL:2d::Cell 1.15 -- 310 313 421 419 290 293 408 381 308 307 292 309 306 303 294 296 304 297 305 302 301 299 300 291 298 295 -DEAL:2d::Cell 1.16 -- 444 441 440 447 451 450 449 448 459 458 457 455 439 435 445 443 456 454 434 453 438 437 436 446 442 452 -DEAL:2d::Cell 1.17 -- 440 447 385 379 449 448 373 377 412 411 410 409 378 413 407 402 399 398 383 396 376 387 406 405 401 404 -DEAL:2d::Cell 1.18 -- 451 450 449 448 423 416 421 419 432 433 430 429 445 443 427 431 418 420 428 426 424 414 417 425 422 415 -DEAL:2d::Cell 1.19 -- 449 448 373 377 421 419 408 381 388 403 386 382 384 394 395 390 372 391 380 393 397 392 374 400 375 389 -DEAL:2d::Cell 2.0 -- 234 237 81 83 112 115 114 128 92 93 90 89 88 91 121 122 76 82 86 85 80 84 78 77 79 87 -DEAL:2d::Cell 2.1 -- 81 83 38 41 114 128 18 21 16 15 2 17 13 12 11 14 0 7 6 10 4 8 3 1 9 5 -DEAL:2d::Cell 2.2 -- 112 115 114 128 241 239 129 127 125 99 106 119 121 122 117 116 94 96 126 107 118 97 130 123 103 120 -DEAL:2d::Cell 2.3 -- 114 128 18 21 129 127 113 110 36 35 20 37 34 31 22 24 32 25 33 30 29 27 28 19 26 23 +DEAL:2d::Cell 1.15 -- 310 313 421 419 290 293 332 335 308 307 292 309 306 303 294 296 304 297 305 302 301 299 300 291 298 295 +DEAL:2d::Cell 1.16 -- 448 436 439 447 441 450 446 435 459 457 456 458 443 442 451 445 454 455 453 440 449 438 444 434 437 452 +DEAL:2d::Cell 1.17 -- 439 447 370 389 446 435 373 361 368 381 383 378 364 376 362 360 371 386 374 375 353 372 369 357 358 365 +DEAL:2d::Cell 1.18 -- 441 450 446 435 423 416 421 419 432 433 430 429 451 445 427 431 418 420 428 426 424 414 417 425 422 415 +DEAL:2d::Cell 1.19 -- 446 435 373 361 421 419 332 335 350 349 334 351 348 345 336 338 346 339 347 344 343 341 342 333 340 337 +DEAL:2d::Cell 2.0 -- 271 278 125 124 129 127 113 117 134 133 115 112 119 114 126 122 135 132 130 120 131 128 118 116 123 121 +DEAL:2d::Cell 2.1 -- 125 124 38 41 113 117 18 21 36 35 20 37 34 31 22 24 32 25 33 30 29 27 28 19 26 23 +DEAL:2d::Cell 2.2 -- 129 127 113 117 273 270 77 92 88 91 107 86 126 122 103 100 94 84 95 89 81 93 97 79 78 85 +DEAL:2d::Cell 2.3 -- 113 117 18 21 77 92 83 76 16 15 2 17 13 12 11 14 0 7 6 10 4 8 3 1 9 5 DEAL:3d::FESystem<3>[FE_Q<3>(2)^2-FE_DGQ<3>(1)^2] DEAL:3d::FESystem<3>[FE_Q<3>(1)^2-FE_DGQ<3>(2)^2] -DEAL:3d::Cell 1.1 -- 822 804 395 394 717 713 364 339 655 651 361 360 585 520 363 347 392 338 345 344 357 356 380 393 390 334 343 337 353 342 352 391 336 341 368 354 349 350 340 372 389 388 387 384 358 382 381 376 377 374 373 351 369 366 348 362 385 359 383 355 375 370 367 365 386 378 371 346 379 335 -DEAL:3d::Cell 1.2 -- 508 528 717 713 332 328 276 329 524 635 585 520 243 327 326 275 325 323 263 267 266 239 265 262 227 269 270 313 312 311 310 309 261 331 214 292 258 222 217 240 226 299 223 297 296 232 295 293 253 330 290 289 228 221 287 230 248 294 244 229 246 291 279 247 245 333 264 321 271 241 -DEAL:3d::Cell 1.3 -- 717 713 364 339 276 329 302 268 585 520 363 347 326 275 324 274 319 318 317 301 218 224 308 235 305 225 257 256 233 252 280 285 250 284 249 281 234 216 220 300 242 236 219 320 316 237 260 304 303 298 254 288 286 282 278 273 277 238 215 259 255 231 283 272 322 306 251 315 307 314 -DEAL:3d::Cell 1.4 -- 419 518 655 651 524 635 585 520 212 210 185 201 125 150 156 205 209 208 167 135 157 146 312 311 198 136 118 144 194 143 192 191 145 211 96 140 186 139 184 183 104 138 137 97 178 99 176 175 114 126 132 98 170 168 169 121 133 127 129 102 111 160 161 159 158 213 207 123 206 108 -DEAL:3d::Cell 1.5 -- 655 651 361 360 585 520 363 347 185 201 149 171 156 205 154 142 107 147 199 120 195 119 190 148 134 105 116 163 179 115 174 112 100 130 166 117 162 103 110 204 122 101 151 152 200 196 193 141 182 180 177 172 131 164 128 153 106 202 197 188 181 173 165 109 203 187 113 124 189 155 -DEAL:3d::Cell 1.6 -- 524 635 585 520 243 327 326 275 125 150 156 205 94 93 77 76 227 269 270 313 312 311 310 309 58 62 71 70 192 191 86 95 186 139 184 183 91 89 68 88 84 85 83 92 176 175 78 74 290 289 63 72 90 66 87 82 57 80 79 56 59 73 67 60 81 64 75 61 65 69 -DEAL:3d::Cell 1.7 -- 585 520 363 347 326 275 324 274 156 205 154 142 77 76 54 52 4 11 24 10 23 22 46 53 3 9 20 8 19 18 38 0 2 7 34 16 15 6 14 55 49 26 50 25 51 48 47 42 43 40 39 17 35 32 31 27 1 28 29 21 41 36 33 5 30 44 37 12 45 13 -DEAL:3d::Cell 2.0 -- 622 516 805 778 514 515 779 802 636 454 787 785 634 633 803 827 453 631 630 629 628 627 626 625 624 509 513 439 620 619 618 594 616 448 504 617 612 611 610 609 447 501 500 446 499 498 423 420 449 400 598 597 444 495 494 418 443 492 493 442 491 587 490 485 441 583 488 582 580 489 -DEAL:3d::Cell 2.1 -- 805 778 822 804 779 802 831 830 787 785 829 828 803 827 799 826 843 841 839 837 784 796 820 840 774 777 783 782 793 792 812 838 776 781 808 794 789 790 780 842 835 836 786 798 825 797 821 816 817 814 813 791 809 806 788 834 801 824 823 795 815 810 807 800 832 818 811 775 819 833 -DEAL:3d::Cell 2.2 -- 514 515 779 802 508 528 743 740 634 633 803 827 506 577 742 741 437 460 404 415 626 625 483 438 570 569 568 567 618 594 566 565 612 611 610 609 564 563 562 561 477 559 476 557 423 420 475 555 474 413 552 551 433 549 471 547 546 545 469 543 468 541 467 539 466 537 465 535 464 462 -DEAL:3d::Cell 2.3 -- 779 802 831 830 743 740 717 713 803 827 799 826 742 741 725 757 772 770 716 722 735 734 758 771 768 712 721 715 731 720 730 769 714 719 728 750 718 746 727 773 767 766 724 736 763 760 759 754 732 752 751 729 747 744 726 723 739 737 761 755 753 748 745 738 764 756 749 765 733 762 -DEAL:3d::Cell 2.4 -- 636 454 787 785 634 633 803 827 419 518 681 678 532 531 680 679 624 509 513 439 620 619 618 594 507 533 521 526 527 431 525 523 429 638 422 409 406 519 639 637 424 452 512 511 510 450 623 621 598 597 451 615 614 613 584 407 421 604 601 445 599 596 595 592 590 588 586 484 399 432 -DEAL:3d::Cell 2.5 -- 787 785 829 828 803 827 799 826 681 678 655 651 680 679 663 695 710 708 654 660 673 672 696 709 706 650 659 653 669 658 668 707 652 657 666 688 656 684 665 711 705 704 662 674 701 698 697 692 670 690 689 667 685 682 664 661 677 675 699 693 691 686 683 676 702 694 687 703 671 700 -DEAL:3d::Cell 2.6 -- 634 633 803 827 506 577 742 741 532 531 680 679 524 635 579 576 570 569 568 567 618 594 566 565 502 572 571 496 525 523 402 479 406 519 639 637 478 560 558 556 554 553 550 548 623 621 470 544 552 551 542 540 538 536 534 428 463 410 426 398 411 425 456 455 517 632 401 408 529 505 -DEAL:3d::Cell 2.7 -- 803 827 799 826 742 741 725 757 680 679 663 695 579 576 585 520 648 646 606 497 405 591 589 647 644 440 578 487 573 574 427 645 575 417 458 414 396 461 403 649 643 642 602 607 608 397 593 482 434 436 435 473 412 530 522 457 605 416 600 480 481 472 459 603 503 486 430 641 581 640 +DEAL:3d::Cell 1.1 -- 822 804 395 394 507 709 364 339 717 713 361 360 580 707 363 347 392 338 345 344 357 356 380 393 390 334 343 337 353 342 352 391 336 341 368 354 349 350 340 372 389 388 387 384 358 382 381 376 377 374 373 351 369 366 348 362 385 359 383 355 375 370 367 365 386 378 371 346 379 335 +DEAL:3d::Cell 1.2 -- 706 705 507 709 212 211 156 155 704 703 580 707 188 185 206 208 125 142 139 174 146 149 107 147 200 199 198 197 324 331 196 195 144 120 124 145 190 210 209 135 114 141 99 117 182 105 104 115 121 177 176 175 143 173 170 172 171 168 169 167 98 102 129 111 96 160 110 126 127 213 +DEAL:3d::Cell 1.3 -- 507 709 364 339 156 155 123 178 580 707 363 347 206 208 207 205 203 132 148 118 152 193 191 138 137 100 183 140 179 116 136 103 112 130 166 163 162 159 158 97 154 108 122 106 201 194 192 128 184 180 134 113 131 164 161 101 153 204 119 189 181 133 165 157 202 186 109 151 187 150 +DEAL:3d::Cell 1.4 -- 702 498 717 713 704 703 580 707 332 303 242 227 328 327 307 326 301 219 215 300 298 267 324 331 214 239 265 264 316 237 255 313 263 236 261 260 243 235 259 305 329 325 322 320 318 314 254 297 233 311 232 309 222 308 221 231 250 230 249 248 284 306 229 246 262 228 217 244 245 333 +DEAL:3d::Cell 1.5 -- 717 713 361 360 580 707 363 347 242 227 238 280 307 326 223 323 321 252 317 224 312 310 220 279 256 302 295 266 296 294 293 288 289 286 285 247 281 278 277 268 291 270 275 292 319 218 274 253 240 276 226 251 287 282 216 241 330 225 315 258 299 290 283 272 234 304 271 273 257 269 +DEAL:3d::Cell 1.6 -- 704 703 580 707 188 185 206 208 328 327 307 326 94 93 56 55 200 199 198 197 324 331 196 195 92 30 14 9 255 313 20 42 243 235 259 305 86 3 27 40 82 0 39 38 254 297 78 7 176 175 17 37 36 16 35 34 70 15 33 32 66 2 31 18 62 95 91 90 1 29 +DEAL:3d::Cell 1.7 -- 580 707 363 347 206 208 207 205 307 326 223 323 56 55 5 4 11 24 50 10 23 22 46 21 44 89 87 19 83 81 79 8 75 73 71 6 67 65 63 41 12 26 13 52 51 48 25 43 88 84 80 76 72 68 64 28 57 53 47 45 85 77 69 61 49 54 74 58 60 59 +DEAL:3d::Cell 2.0 -- 710 708 805 802 552 697 803 787 696 510 779 799 545 693 829 828 698 694 690 467 538 490 686 685 684 604 682 605 397 491 423 602 674 666 536 530 672 532 609 669 518 402 531 426 410 528 615 593 527 460 616 657 458 459 524 522 523 651 650 711 701 700 687 683 425 454 457 515 517 519 +DEAL:3d::Cell 2.1 -- 805 802 822 804 803 787 785 778 779 799 831 830 829 828 827 826 843 841 839 837 784 796 820 840 774 777 783 782 793 792 812 838 776 781 808 794 789 790 780 842 835 836 786 798 825 797 821 816 817 814 813 791 809 806 788 834 801 824 823 795 815 810 807 800 832 818 811 775 819 833 +DEAL:3d::Cell 2.2 -- 552 697 803 787 706 705 592 591 545 693 829 828 603 637 590 589 516 635 634 633 686 685 632 512 630 629 628 627 423 602 626 625 672 532 609 669 451 493 622 508 401 506 618 448 615 593 449 505 504 503 612 611 502 420 447 500 606 444 446 499 670 419 497 445 496 495 596 595 594 406 +DEAL:3d::Cell 2.3 -- 803 787 785 778 592 591 507 709 829 828 827 826 590 589 588 587 695 667 465 584 585 405 581 579 578 483 577 575 574 573 572 571 570 568 479 569 566 565 564 563 562 481 561 559 540 466 556 416 475 432 472 433 470 546 396 547 699 468 542 543 691 541 644 469 431 464 534 535 675 398 +DEAL:3d::Cell 2.4 -- 696 510 779 799 545 693 829 828 702 498 743 740 671 668 742 741 684 604 682 605 397 491 423 602 471 463 663 653 659 654 655 526 440 456 455 408 643 638 639 636 652 424 453 692 642 421 623 621 616 657 422 662 450 661 461 664 681 679 680 660 678 494 443 418 677 676 399 489 441 487 +DEAL:3d::Cell 2.5 -- 779 799 831 830 829 828 827 826 743 740 717 713 742 741 725 757 772 770 716 722 735 734 758 771 768 712 721 715 731 720 730 769 714 719 728 750 718 746 727 773 767 766 724 736 763 760 759 754 732 752 751 729 747 744 726 723 739 737 761 755 753 748 745 738 764 756 749 765 733 762 +DEAL:3d::Cell 2.6 -- 545 693 829 828 603 637 590 589 671 668 742 741 704 703 619 617 630 629 628 627 423 602 626 625 486 404 576 438 655 526 482 415 643 638 639 636 567 436 478 435 560 557 554 403 623 621 473 417 612 611 452 412 407 689 539 537 400 673 533 529 658 525 641 521 645 640 514 513 511 509 +DEAL:3d::Cell 2.7 -- 829 828 827 826 590 589 588 587 742 741 725 757 619 617 580 707 598 501 608 597 600 409 586 583 434 484 439 480 555 558 477 549 411 427 688 413 462 665 656 520 544 624 620 610 607 599 492 582 485 474 476 550 430 429 442 647 631 613 601 488 437 551 428 646 614 548 553 649 414 648 diff --git a/tests/hp/dof_renumbering_05.output.clang-libc++ b/tests/hp/dof_renumbering_05.output.clang-libc++ deleted file mode 100644 index 00776e5069..0000000000 --- a/tests/hp/dof_renumbering_05.output.clang-libc++ +++ /dev/null @@ -1,57 +0,0 @@ - -DEAL:1d::FESystem<1>[FE_Q<1>(2)^2-FE_DGQ<1>(1)^2] -DEAL:1d::FESystem<1>[FE_Q<1>(1)^2-FE_DGQ<1>(2)^2] -DEAL:1d::Cell 3.4 -- 66 68 72 73 71 65 70 64 67 69 -DEAL:1d::Cell 3.5 -- 72 73 80 81 78 76 79 77 75 74 -DEAL:1d::Cell 3.6 -- 80 81 89 88 86 84 87 85 83 82 -DEAL:1d::Cell 3.7 -- 89 88 97 95 94 92 96 93 91 90 -DEAL:1d::Cell 4.0 -- 7 6 8 9 5 4 3 1 0 2 -DEAL:1d::Cell 4.1 -- 8 9 16 17 14 12 15 13 11 10 -DEAL:1d::Cell 4.2 -- 16 17 24 25 22 20 23 21 19 18 -DEAL:1d::Cell 4.3 -- 24 25 32 33 30 28 31 29 27 26 -DEAL:1d::Cell 4.4 -- 32 33 40 41 38 36 39 37 35 34 -DEAL:1d::Cell 4.5 -- 40 41 48 49 46 44 47 45 43 42 -DEAL:1d::Cell 4.6 -- 48 49 56 57 54 52 55 53 51 50 -DEAL:1d::Cell 4.7 -- 56 57 66 68 62 60 63 61 59 58 -DEAL:2d::FESystem<2>[FE_Q<2>(2)^2-FE_DGQ<2>(1)^2] -DEAL:2d::FESystem<2>[FE_Q<2>(1)^2-FE_DGQ<2>(2)^2] -DEAL:2d::Cell 1.1 -- 42 44 184 160 113 111 183 154 56 54 57 55 51 53 50 52 47 48 46 43 49 38 45 39 40 41 -DEAL:2d::Cell 1.2 -- 276 278 113 111 254 256 195 194 134 133 132 131 130 129 198 204 128 97 135 127 123 126 125 124 122 121 -DEAL:2d::Cell 1.3 -- 113 111 183 154 195 194 188 186 74 72 75 73 71 70 63 69 67 58 64 61 65 66 60 59 68 62 -DEAL:2d::Cell 1.4 -- 274 275 276 278 396 394 395 398 289 288 283 287 286 285 400 401 279 284 280 271 281 270 277 273 272 282 -DEAL:2d::Cell 1.5 -- 276 278 254 256 395 398 374 373 268 266 269 267 263 265 262 264 259 260 258 255 261 250 257 251 252 253 -DEAL:2d::Cell 1.6 -- 396 394 395 398 447 449 434 444 412 411 399 409 400 401 440 445 408 397 413 406 410 402 403 407 405 404 -DEAL:2d::Cell 1.7 -- 395 398 374 373 434 444 372 365 392 391 386 355 383 379 369 371 377 375 393 390 381 389 388 353 356 385 -DEAL:2d::Cell 1.8 -- 254 256 195 194 374 373 226 240 210 209 199 207 198 204 225 232 206 196 211 205 208 197 203 202 201 200 -DEAL:2d::Cell 1.9 -- 195 194 188 186 226 240 318 292 151 152 153 150 149 148 141 144 145 139 136 137 140 138 142 146 147 143 -DEAL:2d::Cell 1.10 -- 374 373 226 240 372 365 380 352 248 243 249 247 225 232 241 246 245 213 216 223 242 239 233 238 237 235 -DEAL:2d::Cell 1.11 -- 226 240 318 292 380 352 336 338 229 244 228 217 230 236 215 221 231 212 214 224 220 219 227 222 218 234 -DEAL:2d::Cell 1.12 -- 184 160 307 303 183 154 290 326 192 187 182 185 193 191 167 181 190 155 158 165 189 180 175 178 177 161 -DEAL:2d::Cell 1.13 -- 307 303 420 419 290 326 422 418 330 325 322 297 320 317 331 329 319 328 327 291 294 301 324 316 313 314 -DEAL:2d::Cell 1.14 -- 183 154 290 326 188 186 318 292 163 164 159 157 167 181 179 174 173 170 171 166 168 162 169 176 172 156 -DEAL:2d::Cell 1.15 -- 290 326 422 418 318 292 336 338 305 296 304 295 299 293 315 310 298 306 300 302 311 309 323 312 321 308 -DEAL:2d::Cell 1.16 -- 447 449 434 444 448 450 435 436 459 457 456 439 440 445 438 443 454 453 458 446 455 437 442 452 441 451 -DEAL:2d::Cell 1.17 -- 434 444 372 365 435 436 380 352 387 384 357 364 367 363 359 361 360 366 368 378 376 370 362 358 354 382 -DEAL:2d::Cell 1.18 -- 448 450 435 436 420 419 422 418 433 432 427 431 438 443 430 429 423 428 424 415 425 414 421 417 416 426 -DEAL:2d::Cell 1.19 -- 435 436 380 352 422 418 336 338 350 348 351 349 345 347 344 346 341 342 340 337 343 332 339 333 334 335 -DEAL:2d::Cell 2.0 -- 274 275 82 78 116 115 114 101 93 92 89 91 90 88 94 100 85 87 84 81 86 79 83 80 76 77 -DEAL:2d::Cell 2.1 -- 82 78 42 44 114 101 0 28 36 31 25 27 37 35 29 34 33 1 4 11 30 24 21 19 22 7 -DEAL:2d::Cell 2.2 -- 116 115 114 101 276 278 108 109 119 98 120 105 94 100 104 103 102 106 99 95 117 112 118 110 96 107 -DEAL:2d::Cell 2.3 -- 114 101 0 28 108 109 113 111 16 32 2 5 13 9 14 20 8 12 17 26 23 18 15 10 6 3 -DEAL:3d::FESystem<3>[FE_Q<3>(2)^2-FE_DGQ<3>(1)^2] -DEAL:3d::FESystem<3>[FE_Q<3>(1)^2-FE_DGQ<3>(2)^2] -DEAL:3d::Cell 1.1 -- 776 806 600 601 770 648 566 559 558 570 546 564 568 551 569 542 599 598 595 596 594 597 589 561 593 591 590 592 581 541 586 585 545 539 587 588 573 584 582 583 580 550 578 562 549 563 557 544 555 548 547 536 579 577 576 538 571 572 553 565 543 560 574 556 575 552 567 537 540 554 -DEAL:3d::Cell 1.2 -- 615 771 770 648 332 331 282 275 375 479 568 551 291 280 276 273 330 329 328 325 324 321 285 326 288 278 279 286 277 272 290 294 320 318 289 315 316 314 333 297 300 327 301 322 323 295 296 319 317 293 298 284 307 287 281 283 310 311 304 292 309 308 306 312 313 302 305 299 303 274 -DEAL:3d::Cell 1.3 -- 770 648 566 559 282 275 270 268 568 551 569 542 276 273 220 216 269 267 266 225 263 262 260 261 258 257 235 254 253 233 248 249 250 255 256 231 221 240 271 219 215 239 241 264 265 237 238 259 236 244 245 251 223 246 228 227 226 224 218 232 222 230 217 229 234 252 247 214 242 243 -DEAL:3d::Cell 1.4 -- 478 475 558 570 375 479 568 551 212 211 148 121 143 150 142 144 210 209 149 208 201 206 277 272 207 120 205 204 107 203 172 168 147 202 189 200 133 164 129 174 199 198 181 197 196 136 176 97 195 194 173 193 192 191 190 188 132 187 165 186 185 128 184 183 213 101 109 125 124 108 -DEAL:3d::Cell 1.5 -- 558 570 546 564 568 551 569 542 148 121 123 122 142 144 145 119 141 117 146 99 175 100 106 98 140 96 105 115 178 104 114 103 170 112 130 102 162 110 127 156 154 157 151 137 139 116 118 111 138 179 135 171 167 163 126 155 153 180 169 182 177 166 159 152 131 134 161 113 160 158 -DEAL:3d::Cell 1.6 -- 375 479 568 551 291 280 276 273 143 150 142 144 36 34 39 48 288 278 279 286 277 272 290 294 31 7 30 15 172 168 37 35 133 164 129 174 29 28 32 33 25 26 5 27 176 97 21 20 298 284 22 16 13 23 17 9 3 11 24 18 19 0 4 12 1 8 10 2 6 14 -DEAL:3d::Cell 1.7 -- 568 551 569 542 276 273 220 216 142 144 145 119 39 48 94 93 91 92 90 49 89 61 43 88 83 87 84 47 38 46 58 41 75 40 55 45 44 53 95 51 67 50 65 63 85 86 62 59 81 57 79 74 54 70 82 66 64 78 56 80 77 73 72 52 68 76 71 60 69 42 -DEAL:3d::Cell 2.0 -- 772 727 786 779 766 765 816 808 764 763 800 790 762 761 804 805 726 636 637 619 639 678 613 649 624 675 751 749 748 747 746 745 679 617 634 635 627 713 611 737 671 616 735 633 667 632 730 729 773 769 693 725 768 758 723 756 631 757 754 753 743 734 732 658 630 739 629 731 740 738 -DEAL:3d::Cell 2.1 -- 786 779 776 806 816 808 801 811 800 790 802 787 804 805 788 780 843 841 840 838 837 785 836 834 833 832 795 829 827 793 828 782 777 830 824 783 831 792 842 839 803 775 835 798 825 797 799 819 817 814 815 826 809 789 818 778 784 822 823 794 813 820 781 796 821 812 807 774 810 791 -DEAL:3d::Cell 2.2 -- 766 765 816 808 615 771 706 655 762 761 804 805 607 608 603 612 709 707 711 721 613 649 714 656 645 646 626 614 746 745 690 689 627 713 611 737 647 685 687 684 719 767 681 680 730 729 760 606 659 638 752 750 674 673 672 742 670 669 668 691 666 665 664 663 662 661 660 718 716 676 -DEAL:3d::Cell 2.3 -- 816 808 801 811 706 655 770 648 804 805 788 780 603 612 712 710 704 653 654 692 705 702 625 699 700 652 605 641 686 682 602 722 677 610 609 741 604 703 642 724 720 717 715 708 621 651 697 622 644 643 683 755 618 736 759 701 657 695 623 688 620 744 650 696 694 640 733 698 628 728 -DEAL:3d::Cell 2.4 -- 764 763 800 790 762 761 804 805 478 475 468 472 340 349 476 470 624 675 751 749 748 747 746 745 395 523 377 376 378 425 491 369 412 421 515 422 487 407 353 509 420 419 506 418 373 342 502 391 693 725 361 415 346 414 499 413 339 496 423 351 404 410 371 370 481 408 411 409 482 350 -DEAL:3d::Cell 2.5 -- 800 790 802 787 804 805 788 780 468 472 558 570 476 470 428 405 368 335 477 402 403 473 474 366 471 469 401 399 466 465 464 463 462 400 467 459 458 347 363 362 393 392 452 451 450 449 448 360 446 388 444 384 429 424 386 358 385 436 344 338 382 433 434 431 430 357 432 394 483 427 -DEAL:3d::Cell 2.6 -- 762 761 804 805 607 608 603 612 340 349 476 470 375 479 516 455 645 646 626 614 746 745 690 689 534 533 521 513 491 369 508 507 487 407 353 509 501 500 352 372 494 532 531 520 502 391 336 530 752 750 519 518 512 529 528 527 526 525 511 490 535 522 514 504 505 497 498 495 489 486 -DEAL:3d::Cell 2.7 -- 804 805 788 780 603 612 712 710 476 470 428 405 516 455 568 551 440 442 439 359 435 387 356 517 337 510 343 417 503 374 334 488 484 406 354 480 348 364 396 457 453 390 389 443 437 383 381 379 456 416 493 485 341 367 397 454 447 441 380 355 492 345 461 445 524 426 365 438 398 460 diff --git a/tests/hp/dof_renumbering_06.output b/tests/hp/dof_renumbering_06.output index a6430dd785..dfb69f633a 100644 --- a/tests/hp/dof_renumbering_06.output +++ b/tests/hp/dof_renumbering_06.output @@ -15,43 +15,43 @@ DEAL:1d::Cell 4.6 -- 97 96 95 94 7 8 9 10 11 6 DEAL:1d::Cell 4.7 -- 95 94 91 90 1 2 3 4 5 0 DEAL:2d::FESystem<2>[FE_Q<2>(2)^2-FE_DGQ<2>(1)^2] DEAL:2d::FESystem<2>[FE_Q<2>(1)^2-FE_DGQ<2>(2)^2] -DEAL:2d::Cell 1.1 -- 399 398 433 432 443 440 439 438 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 368 -DEAL:2d::Cell 1.2 -- 441 442 443 440 423 422 453 454 353 354 355 356 357 358 421 420 359 360 361 362 363 364 365 366 367 352 -DEAL:2d::Cell 1.3 -- 443 440 439 438 453 454 456 457 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 334 -DEAL:2d::Cell 1.4 -- 444 445 441 442 407 408 429 430 319 320 321 322 323 324 409 406 325 326 327 328 329 330 331 332 333 318 -DEAL:2d::Cell 1.5 -- 441 442 423 422 429 430 425 424 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 300 +DEAL:2d::Cell 1.1 -- 399 398 441 442 453 452 454 455 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 368 +DEAL:2d::Cell 1.2 -- 436 437 453 452 423 422 456 457 353 354 355 356 357 358 421 420 359 360 361 362 363 364 365 366 367 352 +DEAL:2d::Cell 1.3 -- 453 452 454 455 456 457 458 459 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 334 +DEAL:2d::Cell 1.4 -- 435 434 436 437 407 408 429 430 319 320 321 322 323 324 409 406 325 326 327 328 329 330 331 332 333 318 +DEAL:2d::Cell 1.5 -- 436 437 423 422 429 430 425 424 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 300 DEAL:2d::Cell 1.6 -- 407 408 429 430 415 416 431 428 287 288 289 290 409 406 417 414 291 292 293 294 295 296 297 298 299 286 DEAL:2d::Cell 1.7 -- 429 430 425 424 431 428 427 426 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 268 -DEAL:2d::Cell 1.8 -- 423 422 453 454 425 424 455 452 255 256 257 258 421 420 419 418 259 260 261 262 263 264 265 266 267 254 -DEAL:2d::Cell 1.9 -- 453 454 456 457 455 452 458 459 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 236 -DEAL:2d::Cell 1.10 -- 425 424 455 452 427 426 435 436 221 222 223 224 419 418 225 226 227 228 229 230 231 232 233 234 235 220 -DEAL:2d::Cell 1.11 -- 455 452 458 459 435 436 410 411 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 202 -DEAL:2d::Cell 1.12 -- 433 432 405 404 439 438 446 447 187 188 189 190 191 192 413 412 193 194 195 196 197 198 199 200 201 186 -DEAL:2d::Cell 1.13 -- 405 404 448 449 446 447 450 451 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 168 -DEAL:2d::Cell 1.14 -- 439 438 446 447 456 457 458 459 153 154 155 156 413 412 157 158 159 160 161 162 163 164 165 166 167 152 -DEAL:2d::Cell 1.15 -- 446 447 450 451 458 459 410 411 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 134 -DEAL:2d::Cell 1.16 -- 415 416 431 428 401 402 437 434 121 122 123 124 417 414 403 400 125 126 127 128 129 130 131 132 133 120 -DEAL:2d::Cell 1.17 -- 431 428 427 426 437 434 435 436 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 102 -DEAL:2d::Cell 1.18 -- 401 402 437 434 448 449 450 451 87 88 89 90 403 400 91 92 93 94 95 96 97 98 99 100 101 86 -DEAL:2d::Cell 1.19 -- 437 434 435 436 450 451 410 411 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 68 -DEAL:2d::Cell 2.0 -- 444 445 393 394 389 390 395 396 53 54 55 56 57 58 391 388 59 60 61 62 63 64 65 66 67 52 +DEAL:2d::Cell 1.8 -- 423 422 456 457 425 424 443 444 255 256 257 258 421 420 419 418 259 260 261 262 263 264 265 266 267 254 +DEAL:2d::Cell 1.9 -- 456 457 458 459 443 444 439 438 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 236 +DEAL:2d::Cell 1.10 -- 425 424 443 444 427 426 445 446 221 222 223 224 419 418 225 226 227 228 229 230 231 232 233 234 235 220 +DEAL:2d::Cell 1.11 -- 443 444 439 438 445 446 410 411 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 202 +DEAL:2d::Cell 1.12 -- 441 442 405 404 454 455 433 432 187 188 189 190 191 192 413 412 193 194 195 196 197 198 199 200 201 186 +DEAL:2d::Cell 1.13 -- 405 404 447 448 433 432 449 450 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 168 +DEAL:2d::Cell 1.14 -- 454 455 433 432 458 459 439 438 153 154 155 156 413 412 157 158 159 160 161 162 163 164 165 166 167 152 +DEAL:2d::Cell 1.15 -- 433 432 449 450 439 438 410 411 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 134 +DEAL:2d::Cell 1.16 -- 415 416 431 428 401 402 451 440 121 122 123 124 417 414 403 400 125 126 127 128 129 130 131 132 133 120 +DEAL:2d::Cell 1.17 -- 431 428 427 426 451 440 445 446 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 102 +DEAL:2d::Cell 1.18 -- 401 402 451 440 447 448 449 450 87 88 89 90 403 400 91 92 93 94 95 96 97 98 99 100 101 86 +DEAL:2d::Cell 1.19 -- 451 440 445 446 449 450 410 411 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 68 +DEAL:2d::Cell 2.0 -- 435 434 393 394 389 390 395 396 53 54 55 56 57 58 391 388 59 60 61 62 63 64 65 66 67 52 DEAL:2d::Cell 2.1 -- 393 394 399 398 395 396 387 386 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 34 -DEAL:2d::Cell 2.2 -- 389 390 395 396 441 442 397 392 19 20 21 22 391 388 23 24 25 26 27 28 29 30 31 32 33 18 -DEAL:2d::Cell 2.3 -- 395 396 387 386 397 392 443 440 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 0 +DEAL:2d::Cell 2.2 -- 389 390 395 396 436 437 397 392 19 20 21 22 391 388 23 24 25 26 27 28 29 30 31 32 33 18 +DEAL:2d::Cell 2.3 -- 395 396 387 386 397 392 453 452 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 0 DEAL:3d::FESystem<3>[FE_Q<3>(2)^2-FE_DGQ<3>(1)^2] DEAL:3d::FESystem<3>[FE_Q<3>(1)^2-FE_DGQ<3>(2)^2] -DEAL:3d::Cell 1.1 -- 769 768 661 662 770 771 719 718 774 775 721 722 772 773 723 724 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 660 -DEAL:3d::Cell 1.2 -- 787 788 770 771 615 616 759 758 805 806 772 773 747 748 760 761 617 618 619 620 621 622 623 624 749 750 751 752 753 754 755 756 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 757 746 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 614 -DEAL:3d::Cell 1.3 -- 770 771 719 718 759 758 559 560 772 773 723 724 760 761 725 720 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 558 -DEAL:3d::Cell 1.4 -- 807 808 774 775 805 806 772 773 513 514 762 763 737 738 764 765 515 516 517 518 519 520 753 754 521 522 523 524 525 526 739 740 527 528 529 530 741 742 743 744 531 532 533 534 535 536 745 736 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 512 -DEAL:3d::Cell 1.5 -- 774 775 721 722 772 773 723 724 762 763 457 458 764 765 717 716 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 456 -DEAL:3d::Cell 1.6 -- 805 806 772 773 747 748 760 761 737 738 764 765 419 420 766 767 749 750 751 752 753 754 755 756 421 422 423 424 739 740 425 426 741 742 743 744 427 428 429 430 431 432 433 434 745 736 435 436 757 746 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 418 -DEAL:3d::Cell 1.7 -- 772 773 723 724 760 761 725 720 764 765 717 716 766 767 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 362 -DEAL:3d::Cell 2.0 -- 325 326 789 790 777 778 791 792 809 810 811 812 813 814 815 816 327 328 329 330 331 332 779 780 817 818 819 820 821 822 823 824 333 334 335 336 781 782 783 784 337 338 339 340 341 342 785 776 343 344 825 826 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 324 -DEAL:3d::Cell 2.1 -- 789 790 769 768 791 792 729 728 811 812 731 732 815 816 733 734 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 270 -DEAL:3d::Cell 2.2 -- 777 778 791 792 787 788 793 786 813 814 815 816 827 828 829 830 235 236 237 238 779 780 239 240 831 832 833 834 823 824 835 836 781 782 783 784 241 242 243 244 245 246 247 248 785 776 249 250 251 252 837 804 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 234 -DEAL:3d::Cell 2.3 -- 791 792 729 728 793 786 770 771 815 816 733 734 829 830 735 730 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 180 -DEAL:3d::Cell 2.4 -- 809 810 811 812 813 814 815 816 807 808 838 839 795 796 840 841 817 818 819 820 821 822 823 824 145 146 147 148 149 150 797 798 151 152 153 154 799 800 801 802 155 156 157 158 159 160 803 794 825 826 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 144 -DEAL:3d::Cell 2.5 -- 811 812 731 732 815 816 733 734 838 839 774 775 840 841 727 726 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 90 -DEAL:3d::Cell 2.6 -- 813 814 815 816 827 828 829 830 795 796 840 841 805 806 842 843 831 832 833 834 823 824 835 836 55 56 57 58 797 798 59 60 799 800 801 802 61 62 63 64 65 66 67 68 803 794 69 70 837 804 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 54 -DEAL:3d::Cell 2.7 -- 815 816 733 734 829 830 735 730 840 841 727 726 842 843 772 773 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 0 +DEAL:3d::Cell 1.1 -- 769 768 661 662 770 771 719 718 772 773 721 722 774 775 723 724 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 660 +DEAL:3d::Cell 1.2 -- 787 788 770 771 615 616 759 758 805 806 774 775 747 748 760 761 617 618 619 620 621 622 623 624 749 750 751 752 753 754 755 756 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 757 746 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 614 +DEAL:3d::Cell 1.3 -- 770 771 719 718 759 758 559 560 774 775 723 724 760 761 725 720 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 558 +DEAL:3d::Cell 1.4 -- 807 808 772 773 805 806 774 775 513 514 762 763 737 738 764 765 515 516 517 518 519 520 753 754 521 522 523 524 525 526 739 740 527 528 529 530 741 742 743 744 531 532 533 534 535 536 745 736 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 512 +DEAL:3d::Cell 1.5 -- 772 773 721 722 774 775 723 724 762 763 457 458 764 765 717 716 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 456 +DEAL:3d::Cell 1.6 -- 805 806 774 775 747 748 760 761 737 738 764 765 419 420 766 767 749 750 751 752 753 754 755 756 421 422 423 424 739 740 425 426 741 742 743 744 427 428 429 430 431 432 433 434 745 736 435 436 757 746 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 418 +DEAL:3d::Cell 1.7 -- 774 775 723 724 760 761 725 720 764 765 717 716 766 767 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 362 +DEAL:3d::Cell 2.0 -- 325 326 789 790 777 778 791 792 809 810 823 824 811 812 825 826 327 328 329 330 331 332 779 780 813 814 815 816 817 818 819 820 333 334 335 336 781 782 783 784 337 338 339 340 341 342 785 776 343 344 821 822 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 324 +DEAL:3d::Cell 2.1 -- 789 790 769 768 791 792 729 728 823 824 731 732 825 826 733 734 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 270 +DEAL:3d::Cell 2.2 -- 777 778 791 792 787 788 793 786 811 812 825 826 827 828 836 837 235 236 237 238 779 780 239 240 829 830 831 832 819 820 833 834 781 782 783 784 241 242 243 244 245 246 247 248 785 776 249 250 251 252 835 804 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 234 +DEAL:3d::Cell 2.3 -- 791 792 729 728 793 786 770 771 825 826 733 734 836 837 735 730 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 180 +DEAL:3d::Cell 2.4 -- 809 810 823 824 811 812 825 826 807 808 838 839 795 796 840 841 813 814 815 816 817 818 819 820 145 146 147 148 149 150 797 798 151 152 153 154 799 800 801 802 155 156 157 158 159 160 803 794 821 822 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 144 +DEAL:3d::Cell 2.5 -- 823 824 731 732 825 826 733 734 838 839 772 773 840 841 727 726 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 90 +DEAL:3d::Cell 2.6 -- 811 812 825 826 827 828 836 837 795 796 840 841 805 806 842 843 829 830 831 832 819 820 833 834 55 56 57 58 797 798 59 60 799 800 801 802 61 62 63 64 65 66 67 68 803 794 69 70 835 804 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 54 +DEAL:3d::Cell 2.7 -- 825 826 733 734 836 837 735 730 840 841 727 726 842 843 774 775 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 0 diff --git a/tests/hp/hp_hanging_nodes_01.output b/tests/hp/hp_hanging_nodes_01.output index 08719e3d87..7d91778d17 100644 --- a/tests/hp/hp_hanging_nodes_01.output +++ b/tests/hp/hp_hanging_nodes_01.output @@ -1,30 +1,30 @@ DEAL::DoFs: 48 - 5 0: -0.33 - 5 2: 0.33 - 5 4: 1.0 - 25 0: -0.25 - 25 2: 0.12 - 25 4: 1.1 - 26 0: 0.19 - 26 2: -0.031 - 26 4: 0.84 - 38 0: -0.33 - 38 2: 0.33 - 38 4: 1.0 - 39 0: -0.25 - 39 2: 0.62 - 39 4: 0.63 - 40 19: 0.22 + 4 24: -0.33 + 4 1: 0.33 + 4 3: 1.0 + 25 24: -0.25 + 25 1: 0.12 + 25 3: 1.1 + 26 24: 0.19 + 26 1: -0.031 + 26 3: 0.84 + 38 24: -0.33 + 38 1: 0.33 + 38 3: 1.0 + 39 24: -0.25 + 39 1: 0.62 + 39 3: 0.63 + 40 18: 0.22 40 25: -0.11 40 28: 0.89 - 41 19: -0.11 + 41 18: -0.11 41 25: 0.22 41 28: 0.89 - 36 19: 0.22 + 36 18: 0.22 36 31: -0.11 36 33: 0.89 - 37 19: -0.11 + 37 18: -0.11 37 31: 0.22 37 33: 0.89 DEAL::DoFs: 11 diff --git a/tests/hp/renumber_block_wise_01b.output b/tests/hp/renumber_block_wise_01b.output index e50efc2b28..9e357f0db3 100644 --- a/tests/hp/renumber_block_wise_01b.output +++ b/tests/hp/renumber_block_wise_01b.output @@ -1,6 +1,6 @@ DEAL::cell=0.0 -DEAL::0 4 1 6 2 8 3 10 +DEAL::0 1 2 3 4 5 6 7 DEAL::cell=0.1 -DEAL::4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 +DEAL::1 8 3 9 5 10 7 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 DEAL::OK diff --git a/tests/hp/renumber_component_wise.output b/tests/hp/renumber_component_wise.output index 111b2a7ab1..a763dcccca 100644 --- a/tests/hp/renumber_component_wise.output +++ b/tests/hp/renumber_component_wise.output @@ -1,51 +1,51 @@ -DEAL:1d::Cell 3.4 -- 96 77 79 60 30 31 32 0 1 2 -DEAL:1d::Cell 3.5 -- 79 60 80 61 81 62 33 34 3 4 -DEAL:1d::Cell 3.6 -- 80 61 82 63 35 36 37 5 6 7 -DEAL:1d::Cell 3.7 -- 82 63 83 64 84 65 38 39 8 9 -DEAL:1d::Cell 4.0 -- 85 66 86 67 40 41 42 10 11 12 -DEAL:1d::Cell 4.1 -- 86 67 87 68 88 69 43 44 13 14 -DEAL:1d::Cell 4.2 -- 87 68 89 70 45 46 47 15 16 17 -DEAL:1d::Cell 4.3 -- 89 70 90 71 91 72 48 49 18 19 -DEAL:1d::Cell 4.4 -- 90 71 92 73 50 51 52 20 21 22 -DEAL:1d::Cell 4.5 -- 92 73 93 74 94 75 53 54 23 24 -DEAL:1d::Cell 4.6 -- 93 74 95 76 55 56 57 25 26 27 -DEAL:1d::Cell 4.7 -- 95 76 96 77 97 78 58 59 28 29 -DEAL:2d::Cell 1.1 -- 382 304 419 341 384 306 421 343 152 153 154 155 156 157 158 159 160 0 1 2 3 4 5 6 7 8 -DEAL:2d::Cell 1.2 -- 383 305 384 306 385 307 386 308 387 309 388 310 389 311 390 312 391 313 161 162 163 164 9 10 11 12 -DEAL:2d::Cell 1.3 -- 384 306 421 343 386 308 428 350 165 166 167 168 169 170 171 172 173 13 14 15 16 17 18 19 20 21 -DEAL:2d::Cell 1.4 -- 392 314 383 305 393 315 394 316 395 317 396 318 397 319 398 320 399 321 174 175 176 177 22 23 24 25 -DEAL:2d::Cell 1.5 -- 383 305 385 307 394 316 406 328 178 179 180 181 182 183 184 185 186 26 27 28 29 30 31 32 33 34 -DEAL:2d::Cell 1.6 -- 393 315 394 316 400 322 401 323 402 324 403 325 398 320 404 326 405 327 187 188 189 190 35 36 37 38 -DEAL:2d::Cell 1.7 -- 394 316 406 328 401 323 412 334 191 192 193 194 195 196 197 198 199 39 40 41 42 43 44 45 46 47 -DEAL:2d::Cell 1.8 -- 385 307 386 308 406 328 407 329 408 330 409 331 390 312 410 332 411 333 200 201 202 203 48 49 50 51 -DEAL:2d::Cell 1.9 -- 386 308 428 350 407 329 429 351 204 205 206 207 208 209 210 211 212 52 53 54 55 56 57 58 59 60 -DEAL:2d::Cell 1.10 -- 406 328 407 329 412 334 413 335 414 336 415 337 410 332 416 338 417 339 213 214 215 216 61 62 63 64 -DEAL:2d::Cell 1.11 -- 407 329 429 351 413 335 418 340 217 218 219 220 221 222 223 224 225 65 66 67 68 69 70 71 72 73 -DEAL:2d::Cell 1.12 -- 419 341 420 342 421 343 422 344 423 345 424 346 425 347 426 348 427 349 226 227 228 229 74 75 76 77 -DEAL:2d::Cell 1.13 -- 420 342 440 362 422 344 441 363 230 231 232 233 234 235 236 237 238 78 79 80 81 82 83 84 85 86 -DEAL:2d::Cell 1.14 -- 421 343 422 344 428 350 429 351 430 352 431 353 426 348 432 354 433 355 239 240 241 242 87 88 89 90 -DEAL:2d::Cell 1.15 -- 422 344 441 363 429 351 418 340 243 244 245 246 247 248 249 250 251 91 92 93 94 95 96 97 98 99 -DEAL:2d::Cell 1.16 -- 400 322 401 323 434 356 435 357 436 358 437 359 404 326 438 360 439 361 252 253 254 255 100 101 102 103 -DEAL:2d::Cell 1.17 -- 401 323 412 334 435 357 413 335 256 257 258 259 260 261 262 263 264 104 105 106 107 108 109 110 111 112 -DEAL:2d::Cell 1.18 -- 434 356 435 357 440 362 441 363 442 364 443 365 438 360 444 366 445 367 265 266 267 268 113 114 115 116 -DEAL:2d::Cell 1.19 -- 435 357 413 335 441 363 418 340 269 270 271 272 273 274 275 276 277 117 118 119 120 121 122 123 124 125 -DEAL:2d::Cell 2.0 -- 392 314 446 368 447 369 448 370 449 371 450 372 451 373 452 374 453 375 278 279 280 281 126 127 128 129 -DEAL:2d::Cell 2.1 -- 446 368 382 304 448 370 454 376 282 283 284 285 286 287 288 289 290 130 131 132 133 134 135 136 137 138 -DEAL:2d::Cell 2.2 -- 447 369 448 370 383 305 455 377 456 378 457 379 452 374 458 380 459 381 291 292 293 294 139 140 141 142 -DEAL:2d::Cell 2.3 -- 448 370 454 376 455 377 384 306 295 296 297 298 299 300 301 302 303 143 144 145 146 147 148 149 150 151 -DEAL:3d::Cell 1.1 -- 694 544 695 545 700 550 696 546 729 579 697 547 704 554 698 548 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 -DEAL:3d::Cell 1.2 -- 699 549 700 550 701 551 702 552 703 553 704 554 705 555 706 556 707 557 708 558 709 559 710 560 711 561 712 562 713 563 714 564 715 565 716 566 717 567 718 568 719 569 720 570 721 571 722 572 723 573 724 574 725 575 299 300 301 302 303 304 305 306 27 28 29 30 31 32 33 34 -DEAL:3d::Cell 1.3 -- 700 550 696 546 702 552 726 576 704 554 698 548 706 556 727 577 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 -DEAL:3d::Cell 1.4 -- 728 578 729 579 703 553 704 554 730 580 731 581 732 582 733 583 734 584 735 585 736 586 713 563 737 587 738 588 739 589 740 590 741 591 742 592 743 593 744 594 745 595 746 596 747 597 748 598 749 599 750 600 751 601 334 335 336 337 338 339 340 341 62 63 64 65 66 67 68 69 -DEAL:3d::Cell 1.5 -- 729 579 697 547 704 554 698 548 731 581 752 602 733 583 753 603 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 -DEAL:3d::Cell 1.6 -- 703 553 704 554 705 555 706 556 732 582 733 583 754 604 755 605 711 561 712 562 713 563 714 564 756 606 757 607 740 590 758 608 743 593 744 594 759 609 760 610 761 611 762 612 748 598 763 613 724 574 764 614 765 615 369 370 371 372 373 374 375 376 97 98 99 100 101 102 103 104 -DEAL:3d::Cell 1.7 -- 704 554 698 548 706 556 727 577 733 583 753 603 755 605 766 616 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 -DEAL:3d::Cell 2.0 -- 767 617 768 618 769 619 770 620 771 621 772 622 773 623 774 624 775 625 776 626 777 627 778 628 779 629 780 630 781 631 782 632 783 633 784 634 785 635 786 636 787 637 788 638 789 639 790 640 791 641 792 642 793 643 404 405 406 407 408 409 410 411 132 133 134 135 136 137 138 139 -DEAL:3d::Cell 2.1 -- 768 618 694 544 770 620 794 644 772 622 795 645 774 624 796 646 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 -DEAL:3d::Cell 2.2 -- 769 619 770 620 699 549 797 647 773 623 774 624 798 648 799 649 800 650 801 651 778 628 802 652 803 653 804 654 782 632 805 655 785 635 786 636 806 656 807 657 808 658 809 659 790 640 810 660 811 661 812 662 813 663 439 440 441 442 443 444 445 446 167 168 169 170 171 172 173 174 -DEAL:3d::Cell 2.3 -- 770 620 794 644 797 647 700 550 774 624 796 646 799 649 814 664 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 -DEAL:3d::Cell 2.4 -- 771 621 772 622 773 623 774 624 728 578 815 665 816 666 817 667 779 629 780 630 781 631 782 632 818 668 819 669 820 670 821 671 822 672 823 673 824 674 825 675 826 676 827 677 828 678 829 679 792 642 830 680 831 681 474 475 476 477 478 479 480 481 202 203 204 205 206 207 208 209 -DEAL:3d::Cell 2.5 -- 772 622 795 645 774 624 796 646 815 665 729 579 817 667 832 682 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 -DEAL:3d::Cell 2.6 -- 773 623 774 624 798 648 799 649 816 666 817 667 703 553 833 683 803 653 804 654 782 632 805 655 834 684 835 685 821 671 836 686 824 674 825 675 837 687 838 688 839 689 840 690 829 679 841 691 812 662 842 692 843 693 509 510 511 512 513 514 515 516 237 238 239 240 241 242 243 244 -DEAL:3d::Cell 2.7 -- 774 624 796 646 799 649 814 664 817 667 832 682 833 683 704 554 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 +DEAL:1d::Cell 3.4 -- 79 60 80 61 30 31 32 0 1 2 +DEAL:1d::Cell 3.5 -- 80 61 82 63 81 62 33 34 3 4 +DEAL:1d::Cell 3.6 -- 82 63 83 64 35 36 37 5 6 7 +DEAL:1d::Cell 3.7 -- 83 64 84 65 85 66 38 39 8 9 +DEAL:1d::Cell 4.0 -- 86 67 87 68 40 41 42 10 11 12 +DEAL:1d::Cell 4.1 -- 87 68 89 70 88 69 43 44 13 14 +DEAL:1d::Cell 4.2 -- 89 70 90 71 45 46 47 15 16 17 +DEAL:1d::Cell 4.3 -- 90 71 92 73 91 72 48 49 18 19 +DEAL:1d::Cell 4.4 -- 92 73 93 74 50 51 52 20 21 22 +DEAL:1d::Cell 4.5 -- 93 74 95 76 94 75 53 54 23 24 +DEAL:1d::Cell 4.6 -- 95 76 96 77 55 56 57 25 26 27 +DEAL:1d::Cell 4.7 -- 96 77 79 60 97 78 58 59 28 29 +DEAL:2d::Cell 1.1 -- 382 304 383 305 384 306 385 307 152 153 154 155 156 157 158 159 160 0 1 2 3 4 5 6 7 8 +DEAL:2d::Cell 1.2 -- 400 322 384 306 401 323 391 313 386 308 387 309 388 310 389 311 390 312 161 162 163 164 9 10 11 12 +DEAL:2d::Cell 1.3 -- 384 306 385 307 391 313 392 314 165 166 167 168 169 170 171 172 173 13 14 15 16 17 18 19 20 21 +DEAL:2d::Cell 1.4 -- 393 315 400 322 394 316 402 324 395 317 396 318 397 319 398 320 399 321 174 175 176 177 22 23 24 25 +DEAL:2d::Cell 1.5 -- 400 322 401 323 402 324 403 325 178 179 180 181 182 183 184 185 186 26 27 28 29 30 31 32 33 34 +DEAL:2d::Cell 1.6 -- 394 316 402 324 404 326 409 331 405 327 406 328 398 320 407 329 408 330 187 188 189 190 35 36 37 38 +DEAL:2d::Cell 1.7 -- 402 324 403 325 409 331 410 332 191 192 193 194 195 196 197 198 199 39 40 41 42 43 44 45 46 47 +DEAL:2d::Cell 1.8 -- 401 323 391 313 403 325 415 337 411 333 412 334 389 311 413 335 414 336 200 201 202 203 48 49 50 51 +DEAL:2d::Cell 1.9 -- 391 313 392 314 415 337 416 338 204 205 206 207 208 209 210 211 212 52 53 54 55 56 57 58 59 60 +DEAL:2d::Cell 1.10 -- 403 325 415 337 410 332 421 343 417 339 418 340 413 335 419 341 420 342 213 214 215 216 61 62 63 64 +DEAL:2d::Cell 1.11 -- 415 337 416 338 421 343 422 344 217 218 219 220 221 222 223 224 225 65 66 67 68 69 70 71 72 73 +DEAL:2d::Cell 1.12 -- 383 305 428 350 385 307 430 352 423 345 424 346 425 347 426 348 427 349 226 227 228 229 74 75 76 77 +DEAL:2d::Cell 1.13 -- 428 350 429 351 430 352 431 353 230 231 232 233 234 235 236 237 238 78 79 80 81 82 83 84 85 86 +DEAL:2d::Cell 1.14 -- 385 307 430 352 392 314 416 338 432 354 433 355 426 348 434 356 435 357 239 240 241 242 87 88 89 90 +DEAL:2d::Cell 1.15 -- 430 352 431 353 416 338 422 344 243 244 245 246 247 248 249 250 251 91 92 93 94 95 96 97 98 99 +DEAL:2d::Cell 1.16 -- 404 326 409 331 436 358 441 363 437 359 438 360 407 329 439 361 440 362 252 253 254 255 100 101 102 103 +DEAL:2d::Cell 1.17 -- 409 331 410 332 441 363 421 343 256 257 258 259 260 261 262 263 264 104 105 106 107 108 109 110 111 112 +DEAL:2d::Cell 1.18 -- 436 358 441 363 429 351 431 353 442 364 443 365 439 361 444 366 445 367 265 266 267 268 113 114 115 116 +DEAL:2d::Cell 1.19 -- 441 363 421 343 431 353 422 344 269 270 271 272 273 274 275 276 277 117 118 119 120 121 122 123 124 125 +DEAL:2d::Cell 2.0 -- 393 315 452 374 446 368 453 375 447 369 448 370 449 371 450 372 451 373 278 279 280 281 126 127 128 129 +DEAL:2d::Cell 2.1 -- 452 374 382 304 453 375 454 376 282 283 284 285 286 287 288 289 290 130 131 132 133 134 135 136 137 138 +DEAL:2d::Cell 2.2 -- 446 368 453 375 400 322 459 381 455 377 456 378 450 372 457 379 458 380 291 292 293 294 139 140 141 142 +DEAL:2d::Cell 2.3 -- 453 375 454 376 459 381 384 306 295 296 297 298 299 300 301 302 303 143 144 145 146 147 148 149 150 151 +DEAL:3d::Cell 1.1 -- 694 544 695 545 696 546 697 547 698 548 699 549 700 550 701 551 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 +DEAL:3d::Cell 1.2 -- 702 552 696 546 703 553 725 575 704 554 700 550 705 555 727 577 706 556 707 557 708 558 709 559 710 560 711 561 712 562 713 563 714 564 715 565 716 566 717 567 718 568 719 569 720 570 721 571 722 572 723 573 724 574 299 300 301 302 303 304 305 306 27 28 29 30 31 32 33 34 +DEAL:3d::Cell 1.3 -- 696 546 697 547 725 575 726 576 700 550 701 551 727 577 728 578 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 +DEAL:3d::Cell 1.4 -- 729 579 698 548 704 554 700 550 730 580 750 600 731 581 752 602 732 582 733 583 734 584 712 562 735 585 736 586 737 587 738 588 739 589 740 590 741 591 742 592 743 593 744 594 745 595 746 596 747 597 748 598 749 599 334 335 336 337 338 339 340 341 62 63 64 65 66 67 68 69 +DEAL:3d::Cell 1.5 -- 698 548 699 549 700 550 701 551 750 600 751 601 752 602 753 603 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 +DEAL:3d::Cell 1.6 -- 704 554 700 550 705 555 727 577 731 581 752 602 754 604 765 615 710 560 711 561 712 562 713 563 755 605 756 606 738 588 757 607 741 591 742 592 758 608 759 609 760 610 761 611 746 596 762 612 723 573 763 613 764 614 369 370 371 372 373 374 375 376 97 98 99 100 101 102 103 104 +DEAL:3d::Cell 1.7 -- 700 550 701 551 727 577 728 578 752 602 753 603 765 615 766 616 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 +DEAL:3d::Cell 2.0 -- 767 617 790 640 768 618 791 641 769 619 793 643 770 620 795 645 771 621 772 622 773 623 774 624 775 625 776 626 777 627 778 628 779 629 780 630 781 631 782 632 783 633 784 634 785 635 786 636 787 637 788 638 789 639 404 405 406 407 408 409 410 411 132 133 134 135 136 137 138 139 +DEAL:3d::Cell 2.1 -- 790 640 694 544 791 641 792 642 793 643 794 644 795 645 796 646 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 +DEAL:3d::Cell 2.2 -- 768 618 791 641 702 552 812 662 770 620 795 645 797 647 813 663 798 648 799 649 774 624 800 650 801 651 802 652 778 628 803 653 781 631 782 632 804 654 805 655 806 656 807 657 786 636 808 658 809 659 810 660 811 661 439 440 441 442 443 444 445 446 167 168 169 170 171 172 173 174 +DEAL:3d::Cell 2.3 -- 791 641 792 642 812 662 696 546 795 645 796 646 813 663 814 664 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 +DEAL:3d::Cell 2.4 -- 769 619 793 643 770 620 795 645 729 579 830 680 815 665 831 681 775 625 776 626 777 627 778 628 816 666 817 667 818 668 819 669 820 670 821 671 822 672 823 673 824 674 825 675 826 676 827 677 788 638 828 678 829 679 474 475 476 477 478 479 480 481 202 203 204 205 206 207 208 209 +DEAL:3d::Cell 2.5 -- 793 643 794 644 795 645 796 646 830 680 698 548 831 681 832 682 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 +DEAL:3d::Cell 2.6 -- 770 620 795 645 797 647 813 663 815 665 831 681 704 554 843 693 801 651 802 652 778 628 803 653 833 683 834 684 819 669 835 685 822 672 823 673 836 686 837 687 838 688 839 689 827 677 840 690 810 660 841 691 842 692 509 510 511 512 513 514 515 516 237 238 239 240 241 242 243 244 +DEAL:3d::Cell 2.7 -- 795 645 796 646 813 663 814 664 831 681 832 682 843 693 700 550 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 diff --git a/tests/mpi/hp_unify_dof_indices_04.mpirun=2.output b/tests/mpi/hp_unify_dof_indices_04.mpirun=2.output index 7a30c99061..f98ee29351 100644 --- a/tests/mpi/hp_unify_dof_indices_04.mpirun=2.output +++ b/tests/mpi/hp_unify_dof_indices_04.mpirun=2.output @@ -1,15 +1,15 @@ DEAL:0:2d::Processor: 0 -DEAL:0:2d:: n_locally_owned_dofs: 43 +DEAL:0:2d:: n_locally_owned_dofs: 40 DEAL:0:2d:: n_global_dofs: 55 DEAL:0:3d::Processor: 0 -DEAL:0:3d:: n_locally_owned_dofs: 223 +DEAL:0:3d:: n_locally_owned_dofs: 217 DEAL:0:3d:: n_global_dofs: 262 DEAL:1:2d::Processor: 1 -DEAL:1:2d:: n_locally_owned_dofs: 12 -DEAL:1:2d:: n_global_dofs: 55 +DEAL:1:2d:: n_locally_owned_dofs: 15 +DEAL:1:2d:: n_global_dofs: 55 DEAL:1:3d::Processor: 1 -DEAL:1:3d:: n_locally_owned_dofs: 39 +DEAL:1:3d:: n_locally_owned_dofs: 45 DEAL:1:3d:: n_global_dofs: 262 diff --git a/tests/mpi/hp_unify_dof_indices_06.mpirun=2.output b/tests/mpi/hp_unify_dof_indices_06.mpirun=2.output index 40ccf9aa8b..630eeac139 100644 --- a/tests/mpi/hp_unify_dof_indices_06.mpirun=2.output +++ b/tests/mpi/hp_unify_dof_indices_06.mpirun=2.output @@ -1,15 +1,15 @@ DEAL:0:2d::Processor: 0 -DEAL:0:2d:: n_locally_owned_dofs: 44 +DEAL:0:2d:: n_locally_owned_dofs: 42 DEAL:0:2d:: n_global_dofs: 69 DEAL:0:3d::Processor: 0 -DEAL:0:3d:: n_locally_owned_dofs: 224 +DEAL:0:3d:: n_locally_owned_dofs: 220 DEAL:0:3d:: n_global_dofs: 344 DEAL:1:2d::Processor: 1 -DEAL:1:2d:: n_locally_owned_dofs: 25 +DEAL:1:2d:: n_locally_owned_dofs: 27 DEAL:1:2d:: n_global_dofs: 69 DEAL:1:3d::Processor: 1 -DEAL:1:3d:: n_locally_owned_dofs: 120 +DEAL:1:3d:: n_locally_owned_dofs: 124 DEAL:1:3d:: n_global_dofs: 344 diff --git a/tests/mpi/hp_unify_dof_indices_08.mpirun=2.output b/tests/mpi/hp_unify_dof_indices_08.mpirun=2.output index a9b832f5a0..6f0e2feeab 100644 --- a/tests/mpi/hp_unify_dof_indices_08.mpirun=2.output +++ b/tests/mpi/hp_unify_dof_indices_08.mpirun=2.output @@ -1,7 +1,7 @@ DEAL:0:2d::Processor: 0 DEAL:0:2d:: n_globally_active_cells: 29035 -DEAL:0:2d:: n_locally_owned_dofs: 242867 +DEAL:0:2d:: n_locally_owned_dofs: 242831 DEAL:0:2d:: n_global_dofs: 485573 DEAL:0:3d::Processor: 0 DEAL:0:3d:: n_globally_active_cells: 13824 @@ -10,7 +10,7 @@ DEAL:0:3d:: n_global_dofs: 1125219 DEAL:1:2d::Processor: 1 DEAL:1:2d:: n_globally_active_cells: 29035 -DEAL:1:2d:: n_locally_owned_dofs: 242706 +DEAL:1:2d:: n_locally_owned_dofs: 242742 DEAL:1:2d:: n_global_dofs: 485573 DEAL:1:3d::Processor: 1 DEAL:1:3d:: n_globally_active_cells: 13824 diff --git a/tests/mpi/hp_unify_dof_indices_08.mpirun=7.output b/tests/mpi/hp_unify_dof_indices_08.mpirun=7.output index 6f3f92110a..6103824ca3 100644 --- a/tests/mpi/hp_unify_dof_indices_08.mpirun=7.output +++ b/tests/mpi/hp_unify_dof_indices_08.mpirun=7.output @@ -1,7 +1,7 @@ DEAL:0:2d::Processor: 0 DEAL:0:2d:: n_globally_active_cells: 29035 -DEAL:0:2d:: n_locally_owned_dofs: 68395 +DEAL:0:2d:: n_locally_owned_dofs: 68397 DEAL:0:2d:: n_global_dofs: 485573 DEAL:0:3d::Processor: 0 DEAL:0:3d:: n_globally_active_cells: 13824 @@ -10,7 +10,7 @@ DEAL:0:3d:: n_global_dofs: 1125219 DEAL:1:2d::Processor: 1 DEAL:1:2d:: n_globally_active_cells: 29035 -DEAL:1:2d:: n_locally_owned_dofs: 72283 +DEAL:1:2d:: n_locally_owned_dofs: 72246 DEAL:1:2d:: n_global_dofs: 485573 DEAL:1:3d::Processor: 1 DEAL:1:3d:: n_globally_active_cells: 13824 @@ -20,7 +20,7 @@ DEAL:1:3d:: n_global_dofs: 1125219 DEAL:2:2d::Processor: 2 DEAL:2:2d:: n_globally_active_cells: 29035 -DEAL:2:2d:: n_locally_owned_dofs: 67839 +DEAL:2:2d:: n_locally_owned_dofs: 67840 DEAL:2:2d:: n_global_dofs: 485573 DEAL:2:3d::Processor: 2 DEAL:2:3d:: n_globally_active_cells: 13824 @@ -30,7 +30,7 @@ DEAL:2:3d:: n_global_dofs: 1125219 DEAL:3:2d::Processor: 3 DEAL:3:2d:: n_globally_active_cells: 29035 -DEAL:3:2d:: n_locally_owned_dofs: 69223 +DEAL:3:2d:: n_locally_owned_dofs: 69235 DEAL:3:2d:: n_global_dofs: 485573 DEAL:3:3d::Processor: 3 DEAL:3:3d:: n_globally_active_cells: 13824 @@ -40,7 +40,7 @@ DEAL:3:3d:: n_global_dofs: 1125219 DEAL:4:2d::Processor: 4 DEAL:4:2d:: n_globally_active_cells: 29035 -DEAL:4:2d:: n_locally_owned_dofs: 69483 +DEAL:4:2d:: n_locally_owned_dofs: 69494 DEAL:4:2d:: n_global_dofs: 485573 DEAL:4:3d::Processor: 4 DEAL:4:3d:: n_globally_active_cells: 13824 @@ -50,7 +50,7 @@ DEAL:4:3d:: n_global_dofs: 1125219 DEAL:5:2d::Processor: 5 DEAL:5:2d:: n_globally_active_cells: 29035 -DEAL:5:2d:: n_locally_owned_dofs: 70928 +DEAL:5:2d:: n_locally_owned_dofs: 70925 DEAL:5:2d:: n_global_dofs: 485573 DEAL:5:3d::Processor: 5 DEAL:5:3d:: n_globally_active_cells: 13824 @@ -60,7 +60,7 @@ DEAL:5:3d:: n_global_dofs: 1125219 DEAL:6:2d::Processor: 6 DEAL:6:2d:: n_globally_active_cells: 29035 -DEAL:6:2d:: n_locally_owned_dofs: 67422 +DEAL:6:2d:: n_locally_owned_dofs: 67436 DEAL:6:2d:: n_global_dofs: 485573 DEAL:6:3d::Processor: 6 DEAL:6:3d:: n_globally_active_cells: 13824 -- 2.39.5