Math-Symbolic-Custom-Pattern version 1.00 ========================================= This module is an extension to the Math::Symbolic module. A basic familiarity with that module is required. The Math::Symbolic::Custom::Pattern module implements pattern matching routines on Math::Symbolic trees. The patterns itself are constructed from Math::Symbolic trees with just a few variables which have a special meaning. Example pattern "VAR_foo + CONST*VAR_foo + VAR_bar + TREE" matches "a + 4*a + b + sin(a*b+c-d)", but not "a + 4*c + b + sin(a*b+c-d)" since the beginning "a +" sets VAR_foo to be "a" and "4*c" contradicts that. Refer to the documentation for details. INSTALLATION To install this module type the following: perl Makefile.PL make make test make install DEPENDENCIES This module requires these other modules and libraries: Math::Symbolic (version 0.150 and higher) Test::More COPYRIGHT AND LICENCE Copyright (C) 2005 by Steffen Müller This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.6.1, at your option, any later version of Perl 5 you may have available.