| Base e0c998 | Head #31800 3d6550 | ||||
|---|---|---|---|---|---|
| Total | Total | +/- | New | ||
| Rate | 88.58% | 88.57% | -0.01% | 100.00% | |
| Hits | 14735 | 14735 | - | 6 | |
| Misses | 1899 | 1901 | +2 | 0 | |
| Filename | Stmts | Miss | Cover |
|---|---|---|---|
| modules/thermal_hydraulics/src/constraints/MassFreeConstraint.C | +2 | +2 | -5.19% |
| TOTAL | +2 | +2 | -0.01% |
codecodecode+
38 39 40 41 + 42 43 44 |
} void MassFreeConstraint::computeResidual(const NumericVector<Number> & /*residual*/) { const auto & dofs = _var.dofIndices(); std::vector<Number> re(dofs.size()); |
50 51 52 53 + 54 55 + 56 57 58 59 + 60 61 62 |
} Real MassFreeConstraint::computeQpResidual(Moose::ConstraintType /*type*/) { return 0; } void MassFreeConstraint::computeJacobian(const SparseMatrix<Number> & /*jacobian*/) { const auto & dofs = _var.dofIndices(); |
74 75 76 77 + 78 79 + 80 81 |
} Real MassFreeConstraint::computeQpJacobian(Moose::ConstraintJacobianType /*type*/) { return 0; } |