We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
show
1 parent e0793aa commit dbb7306Copy full SHA for dbb7306
src/utilities/show.jl
@@ -253,8 +253,12 @@ function Base.show(io::IO, p::Problem)
253
con_str =
254
_str_with_elements(counts.n_constraints, counts.n_scalar_constraints)
255
println(io, " number of constraints : ", con_str)
256
- println(io, " number of coefficients : ", counts.n_nonzeros)
257
- println(io, " number of atoms : ", counts.n_atoms)
+ println(
+ io,
258
+ " number of coefficients : ",
259
+ _to_underscore(counts.n_nonzeros),
260
+ )
261
+ println(io, " number of atoms : ", _to_underscore(counts.n_atoms))
262
println(io)
263
# Print solution summary
264
println(io, "Solution summary")
0 commit comments