Skip to content

Commit

Permalink
Mosek driver new features (#190)
Browse files Browse the repository at this point in the history
* Mosek driver linear constraints, hotstart

* Using vectors in status key setting functions.

* Added back AddConstraint functions.

* - Undounded rays.
- MIP hotstart, gap, dual bound.
- Sensitivity analysis.

* Added solver tags.

* modellist.json fix for sensitivity

Co-authored-by: Gabor Ballo <[email protected]>
Co-authored-by: Gleb <[email protected]>
  • Loading branch information
3 people authored Oct 24, 2022
1 parent 76b42d6 commit d33150e
Show file tree
Hide file tree
Showing 7 changed files with 525 additions and 210 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@ Testing
*.pyc
*.user
*~

.idea
*.csv

.vscode
/src/expr-info.cc
3 changes: 1 addition & 2 deletions solvers/mosek/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
std::unique_ptr<mp::BasicBackend> CreateMosekBackend();

extern "C" int main1(int, char **argv) {
return
mp::RunBackendApp(argv, CreateMosekBackend);
return mp::RunBackendApp(argv, CreateMosekBackend);
}

extern "C" int main2(int, char** argv, CCallbacks cb) {
Expand Down
Loading

0 comments on commit d33150e

Please sign in to comment.