packages feed

lagrangian 0.2.0.1 → 0.2.0.2

raw patch · 2 files changed

+2/−1 lines, 2 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Numeric.AD.Lagrangian: feasible :: (forall a. Floating a => ([a] -> a, [Constraint a], [a])) -> Bool

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.1+version:             0.2.0.2  -- A short (one-line) description of the package. synopsis:            Solve lagrangian multiplier problems
src/Numeric/AD/Lagrangian.hs view
@@ -24,5 +24,6 @@ --  The second elements are the lagrange multipliers. module Numeric.AD.Lagrangian (     solve,+    feasible,     Constraint) where import Numeric.AD.Lagrangian.Internal (solve, feasible, Constraint)