case class Base[Obs, T](m: Map[Obs, T], default: T) extends StateValueFn[Obs, T] with Product with Serializable
Basic implementation of a StateValueFn that stores any value supplied to update in an internal immutable map.
- m
the immutable map used for storage.
- default
value returned by Base when queried for some observation it hasn't yet seen.
- Self Type
- Base[Obs, T]
- Source
- StateValueFn.scala
- Alphabetic
- By Inheritance
- Base
- Serializable
- Serializable
- Product
- Equals
- StateValueFn
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- val default: T
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fold[U](prepare: (U) ⇒ T, present: (T) ⇒ U): StateValueFn[Obs, U]
Transforms this StateValueFn into a new instance that applies the supplied
prepare
to all incoming values before they're learned, and presents tracked T instances using thepresent
fn before returning them via stateValue.Transforms this StateValueFn into a new instance that applies the supplied
prepare
to all incoming values before they're learned, and presents tracked T instances using thepresent
fn before returning them via stateValue.- Definition Classes
- StateValueFn
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val m: Map[Obs, T]
-
def
mergeable(implicit T: Semigroup[T]): StateValueFn[Obs, T]
Returns a StateValueFn instance that uses the supplied semigroup T to merge values into this current StateValueFn.
Returns a StateValueFn instance that uses the supplied semigroup T to merge values into this current StateValueFn.
- T
Semigroup instance used to merge values.
- Definition Classes
- StateValueFn
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
seen: Iterable[Obs]
Returns an Iterable of all observations associated with some internally tracked value T.
Returns an Iterable of all observations associated with some internally tracked value T.
- Definition Classes
- Base → StateValueFn
-
def
stateValue(obs: Obs): T
Returns the stored value associated with the given observation.
Returns the stored value associated with the given observation.
- Definition Classes
- Base → StateValueFn
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toEvaluator[A, R, S[_]]: StateValue[Obs, A, R, T, S]
TODO fill in.
TODO fill in.
- Definition Classes
- StateValueFn
-
def
update(obs: Obs, value: T): Base[Obs, T]
Absorb a new value for the supplied observation.
Absorb a new value for the supplied observation. The behavior of this function is implementation dependent; some might ignore the value, some might merge it in to an existing set of values, some might completely replace the stored state.
This implementation replaces any existing value with no merge or logic.
- Definition Classes
- Base → StateValueFn
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
edit this text on github
ScalaRL
This is the API documentation for the ScalaRL functional reinforcement learning library.
Further documentation for ScalaRL can be found at the documentation site.
Check out the ScalaRL package list for all the goods.