Add test for solve_transposed_3x3()

This commit is contained in:
Tong Dong Qiu
2021-11-26 16:49:47 +01:00
parent 56fb3948e5
commit a911d5d2be
3 changed files with 51 additions and 0 deletions

View File

@@ -149,6 +149,11 @@ public:
}
};
// solve A^T * x = b
// A should represent a 3x3 matrix
// x and b are vectors with 3 elements
void solve_transposed_3x3(const double *A, const double *b, double *x);
} // namespace Accelerator
} // namespace Opm