libMesh/libmesh: coverage diff

Base 907660 Head #4526 e5bcbe
Total Total +/- New
Rate 65.93% 65.93% +0.00% 100.00%
Hits 79374 79382 +8 17
Misses 41019 41023 +4 0
Filename Stmts Miss Cover
src/mesh/mesh_base.C +12 +4 -0.15%
TOTAL +12 +4 +0.00%
code
coverage unchanged
code
coverage increased
code
coverage decreased
+
line added or modified

src/mesh/mesh_base.C

1285  
1286  
1287  
1288 +
1289 +
1290 +
1291 +
1292  
1293  
1294  
                --_elem_dims.end(), // --end() is valid if the set is non-empty
                std::ostream_iterator<unsigned int>(oss, ", "));
      oss << cast_int<unsigned int>(*_elem_dims.rbegin());
      oss << "}";
      if (!this->preparation().has_cached_elem_data)
        oss << " (may be out of date)";
      oss << '\n';
    }

  if (!_elem_default_orders.empty())
1300  
1301  
1302  
1303 +
1304 +
1305 +
1306 +
1307  
1308  
1309 +
1310 +
1311 +
1312 +
1313  
1314 +
1315 +
1316 +
1317 +
1318  
1319 +
1320  
1321  
1322  
                     [](Order o)
                       { return Utility::enum_to_string<Order>(o); });
      oss << Utility::enum_to_string<Order>(*_elem_default_orders.rbegin());
      oss << "}";
      if (!this->preparation().has_cached_elem_data)
        oss << " (may be out of date)";
      oss << '\n';
    }

  oss << "  supported_nodal_order()=" << this->_supported_nodal_order;
  if (!this->preparation().has_cached_elem_data)
    oss << " (may be out of date)";
  oss << '\n';

  oss << "  spatial_dimension()=" << int(this->_spatial_dimension);
  if (!this->preparation().has_cached_elem_data)
    oss << " (may be out of date)";
  oss << '\n';

  oss << "  n_nodes()="               << this->n_nodes()                                      << '\n'
      << "    n_local_nodes()="       << this->n_local_nodes()                                << '\n'
      << "  n_elem()="                << this->n_elem()                                       << '\n'
      << "    n_local_elem()="        << this->n_local_elem()                                 << '\n';