Skip to content

Commit d743d6a

Browse files
fix: fix table printing in Symbolics/BCR
1 parent a7ce4ca commit d743d6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/Symbolics/BCR.jmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ end
185185
```julia
186186
tabledata = hcat(N, jacobian_times..., jacobian_allocs..., build_times..., first_call_times..., second_call_times...)
187187
header = ["N", "Jacobian time (no hashconsing)", "Jacobian time (hashconsing)", "Jacobian allocated memory (no hashconsing) (B)", "Jacobian allocated memory (hashconsing) (B)", "`build_function` time (no CSE)", "`build_function` time (CSE)", "First call time (no CSE)", "First call time (CSE)", "Second call time (no CSE)", "Second call time (CSE)"]
188-
pretty_table(tabledata; header, backend = Val(:html))
188+
pretty_table(tabledata; header, backend = :html)
189189
```
190190

191191
```julia

0 commit comments

Comments
 (0)