Length of element as L variable, not dx

Уж больно это сильно мешало при чтении
This commit is contained in:
2025-09-21 22:46:12 +03:00
parent babcf0b877
commit 181e0874a6
2 changed files with 34 additions and 39 deletions

View File

@@ -2,7 +2,8 @@
class Solver {
private:
double A, B, C, D, L, dx;
double A, B, C, D;
double L;
int N, upper, lower;
public:
Solver(double _A, double _B, double _C, double _D, int _N, int _l, int _u);