Skip to content

Releases: PSORLab/EAGO.jl

v0.8.1

15 Jun 20:13
839e0fb
Compare
Choose a tag to compare

EAGO v0.8.1

Diff since v0.8.0

Closed issues:

  • free(): invalid pointer (#74)
  • Verbosity (#99)
  • ERROR: MathOptInterface.UpperBoundAlreadySet{MathOptInterface.Interval, MathOptInterface.LessThan} (#109)
  • Upper bound and binary variables (#115)

Merged pull requests:

v0.8.0

12 Jun 18:59
55dfdfc
Compare
Choose a tag to compare

EAGO v0.8.0

Diff since v0.7.3

Closed issues:

  • Add support for MOI 0.10 and JuMP 0.22 (#100)
  • Upcoming refactoring of JuMP's nonlinear API (#104)

Merged pull requests:

v0.7.3

11 Apr 19:31
9d0c1db
Compare
Choose a tag to compare

EAGO v0.7.3

Diff since v0.7.2

Closed issues:

  • incompatibility with latest JuMP? (#111)

v0.7.2

22 Nov 17:36
1bd3d54
Compare
Choose a tag to compare

EAGO v0.7.2

Diff since v0.7.1

Merged pull requests:

v0.7.1

26 Jun 14:30
Compare
Choose a tag to compare

EAGO v0.7.1

Diff since v0.7.0

Merged pull requests:

  • Use more restrictive JuMP compat bounds (#105) (@odow)

v0.7.0

28 Mar 16:02
5251493
Compare
Choose a tag to compare

EAGO v0.7.0

Diff since v0.6.1

Closed issues:

  • Basic support for MINLP Problems (#33)
  • Local NLP solver specific wrappers (#49)
  • Reduce minor type instability issues (#60)
  • Incorrect display on solution for Maximization Problem (#64)
  • Fix Typos in Readme (#76)
  • Support both incremental loading & copying from Cache (#77)
  • Docs warn against CPLEX (#78)
  • Separate nonlinear expression representation from intermediate calculation data (#79)
  • Use MOI.Test for Unit Testing (#82)
  • Add x*abs(x) (#86)
  • Add logcosh(x) = log(cosh(x)) function (#87)
  • Drop NumericIO dependency from printing (#91)
  • A Bug I encountered when using EAGO to solve my own model (#94)
  • System bug when solving a model (#95)
  • Potential bug (#98)
  • DualStatus not supported (#101)

Merged pull requests:

v0.6.1

04 Mar 16:29
ccf1b2c
Compare
Choose a tag to compare

v0.6.0

19 Feb 08:05
Compare
Choose a tag to compare

EAGO v0.6.0

Diff since v0.5.1

Closed issues:

  • Compatibility issues with DiffRules in Julia 1.3 (#38)
  • EAGO fails to precompile (#43)
  • Consider not restricting compat for Julia to each minor version (#58)
  • EAGO.Optimizer not solving correctly with user-defined subroutines (#59)
  • SIP Extendability and New Algorithms (#62)

Merged pull requests:

Support for Julia ~1

18 Nov 17:48
7d90169
Compare
Choose a tag to compare
v0.5.1

Update README.md

Version 0.5 Release

18 Nov 14:45
Compare
Choose a tag to compare
  • Introduces the register_eago_operators!(m::JuMP.Model) which can be used to register all nonstandard nonlinear terms used in EAGO in any JuMP model.
  • Introduces positive, negative, lower_bnd, upper_bnd, and bnd functions which can be used to enforce bounds on intermediate terms in nonlinear expressions (EAGO.Optimizer only).
  • Adds envelopes: abs2, sinpi, cospi, fma, cbrt.
  • Adds envelopes and functions: xlogx
  • Adds envelopes of special functions: erf, erfc, erfinv, erfcinv
  • Adds envelopes of activation functions: relu, gelu, elu, selu, swish1, sigmoid, softsign, softplus, bisigmoid, pentanh, leaky_relu, param_relu.
  • Error messages in sip_explicit have been made more transparent.
  • Fixes some issues with documentation image rendering and links.
  • Drops appveyor CI and Travis CI in favor of Github Actions.