Remove redundant functions in SLEPcEigenSolver

Issue #908 resolved
Prof Garth Wells created an issue

No point having:

void SLEPcEigenSolver::get_eigenvalue(double& lr, double& lc) const
{
  get_eigenvalue(lr, lc, 0);
}

void SLEPcEigenSolver::get_eigenvalue(double& lr, double& lc, int i) const;

etc. Remove the first. Clearer if index i is required.

Comments (4)

  1. Log in to comment