Skip to content

Commit

Permalink
[Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-buildbot committed Nov 20, 2023
1 parent ebe65ad commit 700d31a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/math/rev/core/vari_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ TEST(AgradRevVari, sparse_matrix_vari) {
vari_value<eig_mat> B_vari(B);
for (int k = 0; k < B.outerSize(); ++k) {
typename vari_value<eig_mat>::InnerIterator iz(B_vari.val(), k);
for (inner_iterator it(B, k); static_cast<bool>(it) && static_cast<bool>(iz); ++it, ++iz) {
for (inner_iterator it(B, k);
static_cast<bool>(it) && static_cast<bool>(iz); ++it, ++iz) {
EXPECT_FLOAT_EQ(iz.value(), it.value());
}
}
Expand Down

0 comments on commit 700d31a

Please sign in to comment.