jump-dev / jump-dev/MathOptAnalyzer.jl

Add summarize(data, model::JuMP.Model)

Open
#61 3 comments 0 reactions 0 assignees View on GitHub
Dominant language
Julia
Stars
20
Forks
3
PR merge metrics
No merged PRs in 30d

Description

Would it be possible to translate the MOI stuff back to JuMP?

```md
## List of issues

Showing first 10 issues (37 issues ommitted)

* Variable: MOI.VariableIndex(31914)
* Variable: MOI.VariableIndex(31915)
* Variable: MOI.VariableIndex(31916)
```

is not as helpfull as

```md
## List of issues

Showing first 10 issues (37 issues ommitted)

* Variable: $(JuMP.all_variables(model)[31914])
* Variable: $(JuMP.all_variables(model)[31915])
* Variable: $(JuMP.all_variables(model)[31916])
```

Same for the constraints:

```julia
MathOptInterface.ConstraintIndex{MathOptInterface.ScalarAffineFunction{Float64}, MathOptInterface.GreaterThan{Float64}}(518)
```
```julia
JuMP.all_constraints(model, JuMP.AffExpr, MOI.GreaterThan{Float64})[518]
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.