Skip to content

Commit

Permalink
Merge pull request #359 from ginkgo-project/bicgstab_fix
Browse files Browse the repository at this point in the history
Bugfix for BiCGSTAB
  • Loading branch information
hartwiganzt committed Oct 10, 2019
2 parents 998ce9d + 40d6d3d commit d27dd75
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion core/solver/bicgstab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ void Bicgstab<ValueType>::apply_impl(const LinOp *b, LinOp *x) const
system_matrix_, std::shared_ptr<const LinOp>(b, [](const LinOp *) {}),
x, r.get());
rr->copy_from(r.get());
system_matrix_->apply(r.get(), v.get());

int iter = -1;
while (true) {
Expand Down

0 comments on commit d27dd75

Please sign in to comment.