hdavid16 / DisjunctiveProgramming.jl

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

Improve performance of `distribute_and_over_or!` #35

Closed hdavid16 closed 10 months ago

hdavid16 commented 2 years ago

Should be done from the bottom up on the expression tree for best performance. However, it is currently done from the top down, which is why we run it in a loop until all clauses are in CNF.

hdavid16 commented 10 months ago

should be fixed in v0.4.0 via recursion