| Copyright | (c) Dominik Schrempf 2020 |
|---|---|
| License | GPL-3.0-or-later |
| Maintainer | dominik.schrempf@gmail.com |
| Stability | unstable |
| Portability | portable |
| Safe Haskell | Safe |
| Language | Haskell2010 |
Mcmc.Monitor.Parameter
Description
Creation date: Fri May 29 11:11:49 2020.
Synopsis
- data MonitorParameter a = MonitorParameter {}
- monitorInt :: Integral b => String -> Lens' a b -> MonitorParameter a
- monitorRealFloat :: RealFloat b => String -> Lens' a b -> MonitorParameter a
- monitorRealFloatF :: RealFloat b => String -> Lens' a b -> MonitorParameter a
- monitorRealFloatS :: RealFloat b => String -> Lens' a b -> MonitorParameter a
Documentation
data MonitorParameter a Source #
Instruction about a parameter to monitor.
Constructors
| MonitorParameter | |
Arguments
| :: Integral b | |
| => String | Name of monitor. |
| -> Lens' a b | Instruction about which parameter to monitor. |
| -> MonitorParameter a |
Monitor integral parameters such as Int.
Arguments
| :: RealFloat b | |
| => String | Name of monitor. |
| -> Lens' a b | Instruction about which parameter to monitor. |
| -> MonitorParameter a |
Monitor real float parameters such as Double with eight decimal places
(half precision).
Arguments
| :: RealFloat b | |
| => String | Name of monitor. |
| -> Lens' a b | Instruction about which parameter to monitor. |
| -> MonitorParameter a |
Monitor real float parameters such as Double with full precision.
Arguments
| :: RealFloat b | |
| => String | Name of monitor. |
| -> Lens' a b | Instruction about which parameter to monitor. |
| -> MonitorParameter a |
Monitor real float parameters such as Double with scientific notation and
eight decimal places.