Add project 1 with the corresponding source code and report.

This commit is contained in:
2025-08-31 14:03:13 +02:00
commit 49a519379c
18 changed files with 2421 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#include <vector>
std::vector<double> general_algorithm(const std::vector<double>& a, const std::vector<double>& b, const std::vector<double>& c, const std::vector<double>& g);
std::vector<double> special_algorithm(const std::vector<double>& g);
std::vector<double> optimal_algorithm_opt(const std::vector<double>& g);
std::vector<double> add_boundaries(const std::vector<double>& v);