-
-
Notifications
You must be signed in to change notification settings - Fork 401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Model's print summary should include value type #3802
Comments
How about something like: julia> model
A JuMP Model
├ objective_sense: MIN_SENSE
│ └ objective_function_type: AffExpr
├ num_variables: 1
├ num_constraints: 2
│ ├ VariableRef in MOI.GreaterThan{Float64}: 1
│ └ VariableRef in MOI.Integer: 1
├ backend
│ ├ mode: AUTOMATIC
│ ├ solver_name: HiGHS
│ └ value_type: Float64
└ registered names
└ :x |
I like it, we could also say if there is a bridge layer and if there are any bridge in |
So I wondered about this. There's merit to showing all of What about adding something like |
Bridges and caching optimizer and stuff is too complicated for general users. Maybe we have just:
|
We don't want to show all information but the bridge layer is a keyword argument to |
See #3803. For the bridges: I wonder if some mix of |
There's nothing to indicate that this is a
GenericModel{BigFloat}
:The text was updated successfully, but these errors were encountered: