refactor(thetaSeriesExpansion): marked parameters as const
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user