Skip to main content

Special Structure Detection for Pyomo

Project description

Special Structure Detection for Pyomo

DOI travis codecov

This library implements methods to:

  • Detect convex and concave expressions

  • Detect increasing and decreasing expressions

  • Detect linear, quadratic and polynomial expressions

  • Tighten expression bounds

Documentation

Documentation is available at https://cog-imperial.github.io/suspect/

Installation

SUSPECT requires Python 3.5 or later. We recommend installing SUSPECT in a virtual environment

To create the virtual environment run:

$ python3 -m venv myenv
$ source myenv/bin/activate

Then you are ready to clone and install SUSPECT:

$ git clone https://github.com/cog-imperial/suspect.git
$ cd suspect
$ pip install -r requirements.txt
$ pip install .

Command Line Usage

The package contains an utility to display structure information about a single problem.

You can run the utility as:

model_summary.py -p /path/to/problem.osil

or, if you want to check variables bounds include the solution:

model_summary.py -p /path/to/problem.osil -s /path/to/problem.sol

The repository also includes a Dockerfile to simplify running the utility in batch mode in a cloud environment. Refer to the batch folder for more information.

Library Usage

from suspect import (
        set_pyomo4_expression_tree,
        detect_special_structure,
)
import pyomo.environ as aml


set_pyomo4_expression_tree()


model = aml.ConcreteModel()
model.x = aml.Var()
model.y = aml.Var()

model.obj = aml.Objective(expr=(model.y - model.x)**3)
model.c1 = aml.Constraint(expr=model.y - model.x >= 0)

info = detect_special_structure(model)

# try info.variables, info.objectives, and info.constraints
print(info.objectives['obj'])

License

Copyright 2018 Francesco Ceccon

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Changelog

1.0.6 (2018-07-05)

  • Change ExpressionType and UnaryFunctionType to IntEnum

1.0.5 (2018-07-05)

  • Documentation improvements

1.0.4 (2018-07-04)

  • First public release. Yay!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cog-suspect-1.0.7.tar.gz (61.9 kB view details)

Uploaded Source

Built Distribution

cog_suspect-1.0.7-py3-none-any.whl (90.2 kB view details)

Uploaded Python 3

File details

Details for the file cog-suspect-1.0.7.tar.gz.

File metadata

  • Download URL: cog-suspect-1.0.7.tar.gz
  • Upload date:
  • Size: 61.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for cog-suspect-1.0.7.tar.gz
Algorithm Hash digest
SHA256 91debddc04049d92202543404a533a6223df50c8a63e594302ef901a2f6a8d0d
MD5 ac809353e36817fb13e0e68a364bd8ef
BLAKE2b-256 4c503d99bfe9c40fb5834bdf9227123846295b10bc8a034e45fe3cce49366de2

See more details on using hashes here.

File details

Details for the file cog_suspect-1.0.7-py3-none-any.whl.

File metadata

  • Download URL: cog_suspect-1.0.7-py3-none-any.whl
  • Upload date:
  • Size: 90.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for cog_suspect-1.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 ed2077bb8f0f314275223902ebe696d97508b15217f7a4c8138df73c92251e0c
MD5 53dba6eb484fbb5e7e4566ae81e9782e
BLAKE2b-256 715552cf088a56c16da0d4bc7669a1dd8022fda66f2ad6fe2d148895a33f7a08

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page