reinforce-0.0.0.1: Reinforcement learning in Haskell

Copyright(c) Sentenai 2017
LicenseBSD3
Maintainersam@sentenai.com
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell2010

Reinforce.Spaces.State

Description

 

Synopsis

Documentation

class StateSpace s where Source #

State space information to convert to and from a Data.Vector

Minimal complete definition

toVector, fromVector

class StateSpaceStatic s where Source #

State space information to convert to and from a static hmatrix vector

Minimal complete definition

toR

Associated Types

type Size s :: Nat Source #

Methods

toR :: s -> R (Size s) Source #

Instances

StateSpaceStatic () Source # 

Associated Types

type Size () :: Nat Source #

Methods

toR :: () -> R (Size ()) Source #

StateSpaceStatic StateCP Source # 

Associated Types

type Size StateCP :: Nat Source #

Methods

toR :: StateCP -> R (Size StateCP) Source #