Help for this page

Select Code to Download


  1. or download this
    id_0 => {a=>['id_1'],
             b=>['id_1'],
    ...
             .
             .
             z=>['id_1']}
    
  2. or download this
    use strict;
    use warnings;
    ...
    my %states = (id_0 => $hashref);
    print("The first transition for (state,input) pair (id_0,x) is\n");
    print($states{id_0}->{x}->[0]);