This commit is contained in:
2025-09-21 22:46:34 +03:00
parent 181e0874a6
commit 5a74b84c1d

View File

@@ -6,7 +6,7 @@ int main() {
Solver slv(5., 4., 0., 1., 30, 0, 10);
std::cout << "Linear element:";
slv.Execute_Linear(0, 5);
//std::cout << "\nCubic element:" << std::endl;
//slv.Execute_Cubic(0, 5);
std::cout << "\nCubic element:";
slv.Execute_Cubic(0, 5);
return 0;
}