Uses of Interface
cz.cuni.jagrlib.iface.WheelOfFortune

Packages that use WheelOfFortune
cz.cuni.jagrlib.iface Various interfaces for connecting of JaGrLib modules. 
cz.cuni.jagrlib.piece Public modules (building blocks of JaGrLib compositions). 
 

Uses of WheelOfFortune in cz.cuni.jagrlib.iface
 

Subinterfaces of WheelOfFortune in cz.cuni.jagrlib.iface
 interface EntropyHistogram
          Abstract histogram interface - {#link WheelOfFortune} with incremental frequency update capability and decimation mechanism.
 

Methods in cz.cuni.jagrlib.iface with parameters of type WheelOfFortune
 int EntropyCodec.get(WheelOfFortune wheel)
           
 void EntropyCodec.put(WheelOfFortune wheel, int s)
           
 

Uses of WheelOfFortune in cz.cuni.jagrlib.piece
 

Classes in cz.cuni.jagrlib.piece that implement WheelOfFortune
 class IntervalArray
          Entropy histogram implementation: map of cummulative frequency interval trees.
 class StraightRoulette
          Simple roulette-wheel: set of intervals with equal size (i.e. equal probability).
 

Methods in cz.cuni.jagrlib.piece with parameters of type WheelOfFortune
 int ArithmeticCodec.get(WheelOfFortune wheel)
          Decodes one subinterval from the given WheelOfFortune.
 int HuffmanCodec.get(WheelOfFortune wheel)
          Decodes one subinterval from the given WheelOfFortune.
 int LZWCodec.get(WheelOfFortune wheel)
          Decodes one subinterval from the given WheelOfFortune.
 int ZLIBCodec.get(WheelOfFortune wheel)
          Decodes one subinterval from the given WheelOfFortune.
 void ArithmeticCodec.put(WheelOfFortune wheel, int s)
          Encodes one subinterval from the given WheelOfFortune.
 void HuffmanCodec.put(WheelOfFortune wheel, int s)
          Encodes one subinterval from the given WheelOfFortune.
 void LZWCodec.put(WheelOfFortune wheel, int s)
          Encodes one subinterval from the given WheelOfFortune.
 void ZLIBCodec.put(WheelOfFortune wheel, int s)
          Encodes one subinterval from the given WheelOfFortune.