packages feed

lagrangian 0.2.0.0 → 0.2.0.1

raw patch · 2 files changed

+4/−3 lines, 2 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Numeric.AD.Lagrangian: type Constraint a = ([a] -> a, a)

Files

lagrangian.cabal view
@@ -10,7 +10,7 @@ -- PVP summary:      +-+------- breaking API changes --                   | | +----- non-breaking API additions --                   | | | +--- code changes with no API change-version:             0.2.0.0+version:             0.2.0.1  -- A short (one-line) description of the package. synopsis:            Solve lagrangian multiplier problems
src/Numeric/AD/Lagrangian.hs view
@@ -23,5 +23,6 @@ --  The first elements of the result pair are the arguments for the objective function at the minimum.  --  The second elements are the lagrange multipliers. module Numeric.AD.Lagrangian (-    solve) where-import Numeric.AD.Lagrangian.Internal (solve, feasible)+    solve,+    Constraint) where+import Numeric.AD.Lagrangian.Internal (solve, feasible, Constraint)