Ready for fvm steady case
This commit is contained in:
@@ -5,6 +5,8 @@
|
||||
#include "./utils/vector.h"
|
||||
#include "./utils/matrix.h"
|
||||
|
||||
#include "./numerics/initializers/eye.h"
|
||||
|
||||
#include <omp.h>
|
||||
|
||||
namespace numerics{
|
||||
@@ -13,7 +15,7 @@ namespace numerics{
|
||||
void inverse_gj(utils::Matrix<T>& A){
|
||||
//utils::Matrix<T> B(A.rows(),A.cols(), T{0});
|
||||
utils::Matrix<T> B;
|
||||
B.eye(A.rows());
|
||||
B = eye_omp_auto<T>(A.rows());
|
||||
|
||||
|
||||
uint64_t icol{0}, irow{0}, rows{A.rows()}, cols{A.cols()};
|
||||
|
||||
@@ -3,8 +3,6 @@
|
||||
#include "./decomp/lu.h"
|
||||
|
||||
|
||||
|
||||
|
||||
namespace numerics{
|
||||
|
||||
template <typename T>
|
||||
|
||||
Reference in New Issue
Block a user