-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update HiGHS to version 1.6.0 * Use HiGHS interface to check if model is linear or quadratic * Use HighsModel.isMip to check if model is an LP or MILP This fixes an issue in the earlier commit; the property "isLinear" means "MILP but not LP". * Remove unused parameter * Remove "IsLinear" and "IsQuadratic" from solution object The information is rather superfluous, as, on one hand, the user will likely be aware which model they are solving, and on the other, since we can include the types of all variables now, the information on whether a model has integer variables can be determined from that. Indeed, we update all tests to contain the type information as well. * Update a test showcasing an error as the test now actually works * Update a few tests that contain now-invalid formatting * Remove information on linearity from a test * Remove a few unused methods/types * Destroy highs object as early as possible * Add an example of an invalid input in tests
- Loading branch information
Showing
5 changed files
with
58 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters