Help for this page

Select Code to Download


  1. or download this
    $next_emitter = $current_emitter->transition();
    print $next_emitter->emit() . "\n";
    
  2. or download this
    Can't locate object method "emit" via package
    "Emitter=HASH(0x1016c9c0)" (perhaps you forgot to load
    "Emitter=HASH(0x1016c9c0)"?) at HMM/ODCRollGenerator.pm line
    100.
    
  3. or download this
    ref($an_emitter->transition());
    
  4. or download this
    ref($an_emitter)
    
  5. or download this
    sub transitions
    {
    ...
        }
        return $self->{TRANSITIONS};
    }
    
  6. or download this
    $self->{START} = Emitter->new();
    $self->{FAIR} = Emitter->new();
    ...
    ...
    $self->{START}->transitions( { $self->{FAIR} => 0.5,
                                   $self->{LOADED} => 0.5 } );