idaholab/moose: solid_mechanics coverage diff

Base e0c998 Head #31800 3d6550
Total Total +/- New
Rate 84.97% 84.97% - 100.00%
Hits 28104 28104 - 4
Misses 4972 4972 - 0
Filename Stmts Miss Cover
TOTAL 0 0 +100.00%
code
coverage unchanged
code
coverage increased
code
coverage decreased
+
line added or modified

modules/solid_mechanics/src/constraints/NodalFrictionalConstraint.C

214  
215  
216  
217 +
218  
219  
220  
}

void
NodalFrictionalConstraint::computeResidual(const NumericVector<Number> &
                                           /*residual*/)
{
  const auto & primarydof = _var.dofIndices();
261  
262  
263  
264 +
265  
266  
267  
}

void
NodalFrictionalConstraint::computeJacobian(const SparseMatrix<Number> & /*jacobian*/)
{
  // Calculate Jacobian entries and cache those entries along with the row and column indices
  std::vector<dof_id_type> secondarydof = _var.dofIndicesNeighbor();

modules/solid_mechanics/src/constraints/NodalStickConstraint.C

192  
193  
194  
195 +
196  
197  
198  
}

void
NodalStickConstraint::computeJacobian(const SparseMatrix<Number> & jacobian)
{
  // Calculate Jacobian enteries and cache those entries along with the row and column indices
  std::vector<dof_id_type> secondarydof = _var.dofIndicesNeighbor();
236  
237  
238  
239 +
240  
241  
242  
}

void
NodalStickConstraint::computeResidual(const NumericVector<Number> & residual)
{
  std::vector<dof_id_type> primarydof = _var.dofIndices();
  std::vector<dof_id_type> secondarydof = _var.dofIndicesNeighbor();