AERN-Net-0.2.0: Compositional lazy dataflow networks for exact real number computationSource codeContentsIndex
Control.ERNet.Blocks.Real.Basic
Portabilityportable
Stabilityexperimental
Maintainermik@konecny.aow.cz
Description
Synopsis
rateRProcess :: (Channel sIn sOut sInAnyProt sOutAnyProt, ERApproxElementary ra, Typeable ra) => ERProcessName -> Rational -> Int -> ra -> ERProcess sInAnyProt sOutAnyProt
rateRsProcess :: (Channel sIn sOut sInAnyProt sOutAnyProt, ERApproxElementary ra, Typeable ra) => ERProcessName -> Rational -> Int -> ra -> ERProcess sInAnyProt sOutAnyProt
Documentation
rateRProcessSource
:: (Channel sIn sOut sInAnyProt sOutAnyProt, ERApproxElementary ra, Typeable ra)
=> ERProcessNameprocess identifier (string)
-> Rationaldesired ratio of improvement
-> Intmaximum number of attempts to reach desired improvement
-> rasample approximation to aid typechecking
-> ERProcess sInAnyProt sOutAnyProt

A process passing on information about a real number, trying to improve the convergence rate in successive queries.

Each query may refer to a previous query. When it does, the query will not be answered until either:

  • the information about the number has improved by the desired amount since last time
  • the number of queries made in response to this query has reached the given limit
rateRsProcessSource
:: (Channel sIn sOut sInAnyProt sOutAnyProt, ERApproxElementary ra, Typeable ra)
=> ERProcessNameprocess identifier (string)
-> Rationaldesired ratio of improvement
-> Intmaximum number of attempts to reach desired improvement
-> rasample approximation to aid typechecking
-> ERProcess sInAnyProt sOutAnyProt

A process passing on information about a list of real numbers, trying to improve the convergence rate in successive queries.

Each query may refer to a previous query. When it does, the query will not be answered until either:

  • the information about the tuple has improved by the desired amount since last time
  • the number of queries made in response to this query has reached the given limit
Produced by Haddock version 2.4.2