This repository hosts IDAES binary extensions. These extensions include solvers and function libraries. These binary extensions are intended for use with the IDAES Process Modeling Framework https://github.com/IDAES/idaes-pse.
If you have the IDAES framework installed, you can get the extensions by running the following command:
idaes get-extensions
You can also download a particular release of the extensions by providing a URL:
idaes get-extensions --url <url>
The extensions contain a version of the IPOPT solver compiled the HSL linear solver library, for which IDAES has obtained a distribution license. All technical papers, sales and publicity material resulting from use of the HSL codes within IPOPT must contain the following acknowledgement: HSL, a collection of Fortran codes for large-scale scientific computation. See http://www.hsl.rl.ac.uk. The Ipopt source code for IDAES was modified only to add additional messages as required by the HSL distribution license. The modified Ipopt code is available here https://github.com/IDAES/Ipopt/tree/idaes-3.12.13.
See https://github.com/IDAES/idaes-ext/blob/master/license.txt for additional information on third-party code contained in the binaries.
The scripts directory contains scripts for building binary packages for installation. These scripts are generally intended for use by the IDAES team in preparing binaries for release, and are not general purpose tools.
To build the IDAES binaries.
- Clone this repo to idaes-ext.
cd ./ideas-ext
- Copy the HSL files to
coinhsl
inidaes-ext
bash scripts/compile_solvers.sh
bash scripts/compile_libs.sh
- There should be to tar.gz files one with executable solvers and the other with shared libraries in the dist-lib and dist-solvers directories. Add the operating system postfix to the file names. These can be installed with the
idaes get-extension
script
Install MSYS2 from https://www.msys2.org/.
Launch the MinGW64 terminal.
Update MSYS2
pacman -Syu
Install the MinGW build tools and development libraries.
pacman -S mingw-w64-x86_64-toolchain mingw-w64-x86_64-boost unzip patch make mingw-w64-x86_64-lapack
TODO
TODO