From: notifies s. of c. c. <per...@li...> - 2007-05-16 03:25:58
|
Revision: 120 http://svn.sourceforge.net/perl-flat/?rev=120&view=rev Author: estrabd Date: 2007-05-15 20:25:53 -0700 (Tue, 15 May 2007) Log Message: ----------- Added Paths: ----------- trunk/perl-flat/MANIFEST trunk/perl-flat/Makefile Removed Paths: ------------- trunk/perl-flat/MANIFEST trunk/perl-flat/Makefile.PL trunk/perl-flat/TODO Deleted: trunk/perl-flat/MANIFEST =================================================================== --- trunk/perl-flat/MANIFEST 2007-05-16 03:11:59 UTC (rev 119) +++ trunk/perl-flat/MANIFEST 2007-05-16 03:25:53 UTC (rev 120) @@ -1,20 +0,0 @@ -t/01-regex.t -t/02-fa.t -t/03/pregex-pfa.t -t/04-transform.t -MANIFEST -lib/FLAT/Regex/Op.pm -lib/FLAT/Regex/Parser.pm -lib/FLAT/Regex/Transform.pm -lib/FLAT/Regex/WithNegations.pm -lib/FLAT/Regex/Transform.pm -lib/FLAT/Regex.pm -lib/FLAT/FA.pm -lib/FLAT/NFA.pm -lib/FLAT/DFA.pm -lib/FLAT/Transition.pm -lib/FLAT.pm -bin/util-put.pl -bin/fash -Makefile.PL -META.yml Module meta-data (added by MakeMaker) Added: trunk/perl-flat/MANIFEST =================================================================== --- trunk/perl-flat/MANIFEST (rev 0) +++ trunk/perl-flat/MANIFEST 2007-05-16 03:25:53 UTC (rev 120) @@ -0,0 +1,20 @@ +t/01-regex.t +t/02-fa.t +t/03/pregex-pfa.t +t/04-transform.t +MANIFEST +lib/FLAT/Regex/Op.pm +lib/FLAT/Regex/Parser.pm +lib/FLAT/Regex/Transform.pm +lib/FLAT/Regex/WithNegations.pm +lib/FLAT/Regex/Transform.pm +lib/FLAT/Regex.pm +lib/FLAT/FA.pm +lib/FLAT/NFA.pm +lib/FLAT/DFA.pm +lib/FLAT/Transition.pm +lib/FLAT.pm +bin/util-put.pl +bin/fash +Makefile.PL +META.yml Module meta-data (added by MakeMaker) Added: trunk/perl-flat/Makefile =================================================================== --- trunk/perl-flat/Makefile (rev 0) +++ trunk/perl-flat/Makefile 2007-05-16 03:25:53 UTC (rev 120) @@ -0,0 +1,13 @@ +use 5.008; +use ExtUtils::MakeMaker; +# See lib/ExtUtils/MakeMaker.pm for details of how to influence +# the contents of the Makefile that is written. +WriteMakefile( + NAME => 'FLAT', + VERSION_FROM => 'lib/FLAT.pm', + PREREQ_PM => { Parse::RecDescent => 0,}, + PL_FILES => {'bin/util-put.pl', 'bin/util-put'}, + ($] >= 5.005 ? (ABSTRACT_FROM => 'lib/FLAT.pm', + AUTHOR => 'perl-flat') + : ()), +); Deleted: trunk/perl-flat/Makefile.PL =================================================================== --- trunk/perl-flat/Makefile.PL 2007-05-16 03:11:59 UTC (rev 119) +++ trunk/perl-flat/Makefile.PL 2007-05-16 03:25:53 UTC (rev 120) @@ -1,13 +0,0 @@ -use 5.008; -use ExtUtils::MakeMaker; -# See lib/ExtUtils/MakeMaker.pm for details of how to influence -# the contents of the Makefile that is written. -WriteMakefile( - NAME => 'FLAT', - VERSION_FROM => 'lib/FLAT.pm', - PREREQ_PM => { Parse::RecDescent => 0,}, - PL_FILES => {'bin/util-put.pl', 'bin/util-put'}, - ($] >= 5.005 ? (ABSTRACT_FROM => 'lib/FLAT.pm', - AUTHOR => 'perl-flat') - : ()), -); Deleted: trunk/perl-flat/TODO =================================================================== --- trunk/perl-flat/TODO 2007-05-16 03:11:59 UTC (rev 119) +++ trunk/perl-flat/TODO 2007-05-16 03:25:53 UTC (rev 120) @@ -1,13 +0,0 @@ -error checking for doing certain operations on 0-state FAs... - -in dfa minimization, there should be some way to return the equivalence - classes, as well as perhaps the distinguishing strings - -TESTS TESTS TESTS TESTS TESTS TESTS TESTS - -keep track of where in the code we assume ->get_states are numbers (if - we want to add state label support back). - -input and output options and formats - most likely the ability to read in graphviz and GDL formats....heck, even the ability to read in an adcirc style mesh would freaking rock! - -look at creating a 'drop in' regex/pregex parser using the custom recdesc one build for FLAT::Legacy This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |