Skip to content

Commit 160886e

Browse files
committed
Fix CI errors: remove debug display and missing hess_J field
- Remove leftover `display(S)` debug statement in coloring.jl - Add missing `Int[]` for `hess_J` field in `_FunctionStorage` else branch https://claude.ai/code/session_01WBu9hZukriWDSSybN9gfBq
1 parent 68d6fe9 commit 160886e

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

src/coloring.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ function _hessian_color_preprocess(
7171

7272
# Perform coloring using SMC
7373
problem = SMC.ColoringProblem(; structure = :symmetric, partition = :column)
74-
display(S)
7574
tree_result = SMC.coloring(S, problem, algo)
7675

7776
# Wrap result with local_indices

src/types.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ struct _FunctionStorage{R<:SMC.AbstractColoringResult}
172172
grad_sparsity,
173173
Int[],
174174
Int[],
175+
Int[],
175176
nothing,
176177
Array{Float64}(undef, 0, 0),
177178
dependent_subexpressions,

0 commit comments

Comments
 (0)