estimator 1.1.0.0 → 1.1.0.1
raw patch · 5 files changed
+7/−5 lines, 5 filesdep ~linearPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: linear
API changes (from Hackage documentation)
Files
- estimator.cabal +4/−3
- src/Numeric/Estimator/Augment.hs +1/−0
- src/Numeric/Estimator/KalmanFilter.hs +1/−0
- src/Numeric/Estimator/Model/Coordinate.hs +1/−0
- src/Numeric/Estimator/Model/Symbolic.hs +0/−2
estimator.cabal view
@@ -1,5 +1,5 @@ name: estimator-version: 1.1.0.0+version: 1.1.0.1 synopsis: State-space estimation algorithms such as Kalman Filters description: The goal of this library is to simplify implementation and use of@@ -31,10 +31,11 @@ source-repository this type: git location: https://github.com/GaloisInc/estimator- tag: 1.1.0.0+ tag: 1.1.0.1 Flag werror description: Make warnings errors+ manual: True default: False library@@ -53,7 +54,7 @@ ad >=4.2, distributive >=0.4, lens >=4.6,- linear >=1.16 && <1.17,+ linear >=1.16 && <1.19, reflection >=1.5 default-language: Haskell2010 ghc-options: -Wall
src/Numeric/Estimator/Augment.hs view
@@ -26,6 +26,7 @@ import Data.Traversable import Linear import Numeric.Estimator.Class+import Prelude -- | Holder for the basic state vector plus the augmented extra state. data AugmentState state extra a = AugmentState { getState :: state a, getExtra :: extra a }
src/Numeric/Estimator/KalmanFilter.hs view
@@ -18,6 +18,7 @@ import Numeric.AD.Mode.Reverse import Numeric.Estimator.Class import Numeric.Estimator.Matrix+import Prelude -- | All variants of Kalman Filter, at their core, maintain the -- parameters of a multi-variate normal distribution.
src/Numeric/Estimator/Model/Coordinate.hs view
@@ -21,6 +21,7 @@ import Data.Foldable import Data.Traversable import Linear+import Prelude -- * Navigation frame
src/Numeric/Estimator/Model/Symbolic.hs view
@@ -1,5 +1,3 @@-{-# OPTIONS_GHC -fno-warn-orphans #-}- {- | Description: Support for purely symbolic models