julia> m = Model(solver=ClpSolver())
Feasibility problem with:
* 0 linear constraints
* 0 variables
Solver is Error showing value of type Model:
ERROR: BoundsError: attempt to access 1-element Array{SubString{String},1} at index [2]
Stacktrace:
Is this intended? Also
julia> @show m
ERROR: BoundsError: attempt to access 1-element Array{SubString{String},1} at index [2]
Stacktrace:
But
julia> print(m)
Min 0
Subject to
It can be an issue when JuMP is used in REPL mode, especially for teaching undergraduate students without much coding experiences. Of course, I can add a semicolon at the end. If this issue has been discussed already, please kindly give me a link.