Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed compatability requirements #5

Merged
merged 2 commits into from
Dec 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# PlasmoAlgorithms.jl

[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://plasmo-dev.github.io/PlasmoAlgorithms.jl/dev/)

This repository is designed to be a location for meta-algorithms for OptiGraphs with Plasmo.jl. The `\lib` directory contains the algorithms implemented in Plasmo.jl, and these algorithms can be added as packages in Julia.

In the future, we hope to support several decomposition algorithms that exploit the graph structure of Plasmo.jl. Currently, only Benders decomposition is hosted in this directory (as PlasmoBenders.jl), but other algorithms are possible and will likely be added in the future. If you would like to develop a decomposition approach for Plasmo.jl OptiGraphs, we welcome any pull requests and contributions.
Expand Down
4 changes: 3 additions & 1 deletion lib/PlasmoBenders/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"

[compat]
julia = "1"
Plasmo = ">= 0.6.2"
JuMP = "1.2"
MathOptInterface = "1.6"
Plasmo = "^0.6.2"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
Loading