Skip to content

Commit 85f456a

Browse files
Transurgeonclaude
andcommitted
Run clang-format on changed files
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0f2288c commit 85f456a

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

src/atoms/affine/right_matmul.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ static void refresh_dense_right(left_matmul_expr *lnode)
7272
{
7373
for (int j = 0; j < n_orig; j++)
7474
{
75-
dm_A_inner->x[i * n_orig + j] =
76-
dm_AT_inner->x[j * m_orig + i];
75+
dm_A_inner->x[i * n_orig + j] = dm_AT_inner->x[j * m_orig + i];
7776
}
7877
}
7978
}

tests/problem/test_param_prob.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -550,8 +550,7 @@ const char *test_param_left_matmul_sparse(void)
550550

551551
/* CSR data order: row0=[1,2], row1=[3], row2=[4,5] */
552552
double expected_x[5] = {1.0, 2.0, 3.0, 4.0, 5.0};
553-
mu_assert("sparse jac->x wrong",
554-
cmp_double_array(jac->x, expected_x, 5));
553+
mu_assert("sparse jac->x wrong", cmp_double_array(jac->x, expected_x, 5));
555554

556555
free_problem(prob);
557556

0 commit comments

Comments
 (0)