Skip to content

Commit

Permalink
ENH: Call superclass PrintSelf method in child PrintSelf
Browse files Browse the repository at this point in the history
Call the superclass `PrintSelf` method in the child `PrintSelf` method.
  • Loading branch information
jhlegarreta authored and dzenanz committed Jun 7, 2022
1 parent db8d797 commit b5fdb85
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ template <typename TPointSet, typename TOutput, typename TCoordRep>
void
ManifoldParzenWindowsPointSetFunction<TPointSet, TOutput, TCoordRep>::PrintSelf(std::ostream & os, Indent indent) const
{
Superclass::PrintSelf(os, indent);

os << indent << "Covariance neighborhood: " << this->m_CovarianceKNeighborhood << std::endl;
os << indent << "Evaluation neighborhood: " << this->m_EvaluationKNeighborhood << std::endl;
os << indent << "Regularization sigma: " << this->m_RegularizationSigma << std::endl;
Expand Down

0 comments on commit b5fdb85

Please sign in to comment.