refactor(thetaSeriesExpansion): marked parameters as const

This commit is contained in:
2025-04-21 09:09:09 -04:00
parent 513e90b7a0
commit 1af5bd00a2
2 changed files with 6 additions and 6 deletions

View File

@@ -33,9 +33,9 @@
namespace laneEmden {
double a (int k, double n);
double c(int m, double n);
double thetaSeriesExpansion(double xi, double n, int order);
double a (const int k, const double n);
double c(const int m, const double n);
double thetaSeriesExpansion(const double xi, const double n, const int order);
}
// Struct to persist lifetime of the linear and nonlinear solvers