Terminal view fix

This commit is contained in:
2025-09-21 22:35:20 +03:00
parent af1950982b
commit babcf0b877
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -40,7 +40,7 @@ void Solver::Execute_Linear(double val1, double val2) {
} }
#if DEBUG #if DEBUG
std::cout << "Before:" << std::endl; std::cout << std::endl << "Before:" << std::endl;
std::cout << "Ansamb matrix:\n" << ansamb << std::endl; std::cout << "Ansamb matrix:\n" << ansamb << std::endl;
std::cout << "Ansamb load vector:\n" << global_load << std::endl; std::cout << "Ansamb load vector:\n" << global_load << std::endl;
#endif #endif