The following module was proposed for inclusion in the Module List:
modid: PDA::Simple
DSLIP: adpOp
description: Push Down Automaton Generator
userid: ADOKOY (Toshiaki Yokoda)
chapterid: 23 (Miscellaneous_Modules)
communities:
similar:
rationale:
There is no Push Down Automaton generator in CPAN. This module
provides simple operations to generate PDA and simple interfaces to
transit inner state of PDA object.
FEATURES:
It can define transition function with "push" and "pop" and
no-operation.
It's easy to define PDA. my $pda = PDA::Simple->new();
$pda->add_state('A'); ... $pda->add_trans('A','B','a','push');
$pda->add_trans('B','B','b','pop');
It's easy to transitioning. $pda->transit('a','I');
$pda->transit('b','am'); ...
enteredby: ADOKOY (Toshiaki Yokoda)
enteredon: Tue Feb 25 13:59:49 2014 UTC
The resulting entry would be:
PDA::
::Simple adpOp Push Down Automaton Generator ADOKOY
Thanks for registering,
--
The PAUSE
PS: The following links are only valid for module list maintainers:
Registration form with editing capabilities:
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=ced00000_37b1fde99d434609&SUBMIT_pause99_add_mod_preview=1
Immediate (one click) registration:
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=ced00000_37b1fde99d434609&SUBMIT_pause99_add_mod_insertit=1
Peek at the current permissions:
https://pause.perl.org/pause/authenquery?pause99_peek_perms_by=me&pause99_peek_perms_query=PDA%3A%3ASimple