timothy has asked for the wisdom of the Perl Monks concerning the following question:
Hi there,
I am looking for info on "recursive transition networks" using Perl. The literature I found is scarce :( Is there anyone out there who knows of any useful sites, publications, links, coding, basically anything that I could look at or use.
Thanks in advance.
You may want to search on ATN (augmented trans networks) -- as they are more useful than RTN in many cases (and at a low level an extension of them). A perl module for implementing ATN/RTN is DFA::Simple. If you are wondering about the differences between how ATN and RTN state machines are constructed and used a good article is: Here (offsite:gatech.edu).