Ready for fvm steady case
This commit is contained in:
@@ -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 != #
|
||||
//###########################################
|
||||
|
||||
Reference in New Issue
Block a user