Help for this page

Select Code to Download


  1. or download this
        (s0)- F ->(s1)- F ->(s2)-[...]
          |         |         |
          +---------+---------+--[...]- T ->(accept)
    
  2. or download this
        sub outer {
            my @funcs = (\&f1, \&f2, \&f3, ...);
    ...
            
            return ($result);
        }
    
  3. or download this
        sub outer {
            %trans = _get_transition_table();
    ...
                [...]
            );
        }
    
  4. or download this
        sub caller {
            [yadda yadda]
    ...
            
            return ([true|false]);
        }