-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from SECQUOIA/split_logical
Separate the positioning and spectralog instances into two folders
- Loading branch information
Showing
10 changed files
with
58 additions
and
55 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Optimal positioning | ||
|
||
``positioning`` is a demonstration problems for the Pyomo.GDP logical expression system, adapted from its equivalent in LOGMIP. | ||
|
||
Source paper (Example 4): | ||
|
||
> Duran, M. A., & Grossmann, I. E. (1986). An outer-approximation algorithm for a class of mixed-integer nonlinear programs. *Mathematical Programming*, 36(3), 307. https://doi.org/10.1007/BF02592064 | ||
## Problem Details | ||
|
||
### Solution | ||
|
||
Optimal objective value: -8.06 | ||
|
||
### Size | ||
- Variables: 56 | ||
- Boolean: 50 | ||
- Binary: 0 | ||
- Integer: 0 | ||
- Continuous: 6 | ||
- Constraints: 30 | ||
- Nonlinear: 25 | ||
- Disjuncts: 50 | ||
- Disjunctions: 25 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .positioning import build_model | ||
|
||
__all__ = ['build_model'] |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Spectralog | ||
|
||
``spectralog`` is a demonstration problems for the Pyomo.GDP logical expression system, adapted from its equivalent in LOGMIP. | ||
|
||
Source paper (Example 2): | ||
|
||
> Vecchietti, A., & Grossmann, I. E. (1999). LOGMIP: A disjunctive 0-1 non-linear optimizer for process system models. *Computers and Chemical Engineering*, 23(4–5), 555–565. https://doi.org/10.1016/S0098-1354(98)00293-2 | ||
## Problem Details | ||
|
||
### Solution | ||
|
||
Optimal objective value: 12.0893 | ||
|
||
### Size | ||
- Variables: 128 | ||
- Boolean: 60 | ||
- Binary: 0 | ||
- Integer: 0 | ||
- Continuous: 68 | ||
- Constraints: 158 | ||
- Nonlinear: 8 | ||
- Disjuncts: 60 | ||
- Disjunctions: 30 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .spectralog import build_model | ||
|
||
__all__ = ['build_model'] |
File renamed without changes.