libMesh/libmesh: coverage diff

Base 6ae6ba Head #4516 0bb522
Total Total +/- New
Rate 65.86% 65.86% +0.00% -
Hits 79476 79476 - 0
Misses 41196 41195 -1 0
Filename Stmts Miss Cover
src/mesh/distributed_mesh.C 0 -2 +0.25%
src/mesh/mesh_base.C -1 0 -0.01%
src/mesh/unstructured_mesh.C 0 +1 -0.10%
TOTAL -1 -1 +0.00%
code
coverage unchanged
code
coverage increased
code
coverage decreased
+
line added or modified

src/mesh/distributed_mesh.C

1546  
1547  
1548  
1549  
1550  
1551  
1552  
1553  
1554  
1555  
1556  
1557  
1558  
1559  
                      sender_could_become_owner)
                    {
                      if (it != repartitioned_node_pids.end() &&
                          pid < it->second)
                        it->second = pid;
                      else
                        repartitioned_node_pids[n] = pid;
                    }
                  else
                    if (it == repartitioned_node_pids.end())
                      repartitioned_node_pids[n] =
                        DofObject::invalid_processor_id;

                  repartitioned_node_sets_to_push[pid].insert(n);

src/mesh/unstructured_mesh.C

1995  
1996  
1997  
1998  
1999  
2000  
2001  

  // We can't even afford any unset neighbor links here.
  if (!this->is_prepared())
    this->find_neighbors();

  // FIXME: make distributed mesh support efficient.
  // Yes, we currently suck.