hdavid16 / DisjunctiveProgramming.jl

A JuMP extension for Generalized Disjunctive Programming
MIT License
27 stars 3 forks source link

Allow support for iterators in Boolean operators #38

Closed hdavid16 closed 10 months ago

hdavid16 commented 2 years ago

Example:

∨(x[i] for i = 1:2)

which is equivalent to

x[1] ∨ x[2]

Nested operators should be supported

hdavid16 commented 10 months ago

can now do ∨([x[i] for i = 1:2]...) in v0.4.0