Ready for fvm steady case

This commit is contained in:
2025-09-21 20:57:02 +02:00
parent 3a53b6ebf7
commit 513f071748
59 changed files with 1813 additions and 983 deletions
+9
View File
@@ -6,6 +6,11 @@
#include <random>
#include <cstdint>
#include <type_traits>
#include <stdexcept>
#include <cmath>
namespace utils{
//######################################
//# VECTOR TYPE #
@@ -49,6 +54,10 @@ public:
v.resize(new_size, value);
}
T* data() noexcept { return v.data(); }
const T* data() const noexcept { return v.data(); }
//###########################################
//# VECTOR: == and != #
//###########################################