Skip to content

Commit 56f381b

Browse files
pragma omp into gaussJordan
1 parent 2e9c9e1 commit 56f381b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/include/VectorSolver.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ void gaussJordan(matrix a, int k, matrix &ans) {
5656
for (int j = 0; j < k; ++j)
5757
ans[i][j] = a[where[i]][m + j] / a[where[i]][i];
5858

59-
#pragma omp parallel for
6059
for (int i = 0; i < n; ++i) {
6160
for (int j = 0; j < k; ++j) {
6261
double sum = 0;

0 commit comments

Comments
 (0)