Skip to content

Commit

Permalink
fixed typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
EamonnGlynn committed Jul 14, 2024
1 parent fce5a39 commit ad55a78
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pmpo_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ class Matrix {
}

Vec4d solve(Vec4d b){
std::vector<double> x = solve_helper(b);
std::vector<double> b_vec = {b[0], b[1], b[2], b[3]};
std::vector<double> x = solve_helper(b_vec);
return Vec4d(x[0], x[1], x[2], x[3]);
}

Expand Down

0 comments on commit ad55a78

Please sign in to comment.