• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Math/SymbolicX/H04-Mar-2009-284117

t/H04-Mar-2009-209137

Build.PLH A D04-Mar-2009806 3023

ChangesH A D04-Mar-20091.5 KiB3931

MANIFESTH A D04-Mar-2009188 1312

META.ymlH A D04-Mar-2009670 2928

Makefile.PLH A D04-Mar-2009694 1917

READMEH A D04-Mar-20091.6 KiB6645

README

1Math::SymbolicX::ParserExtensionFactory
2=======================================
3
4This module provides a simple way to extend the Math::Symbolic parser with
5arbitrary functions that return any valid Math::Symbolic tree.
6The return value of the function call is
7inserted into the complete parse tree at the point at which the function
8call is parsed. Familiarity with the Math::Symbolic module will be
9assumed throughout the documentation.
10
11
12INSTALLATION
13
14To install this module type the following:
15
16   perl Build.PL
17   ./Build
18   ./Build test
19   ./Build install
20
21On platforms that don't support the "./" notation, that would be:
22
23   perl Build.PL
24   perl Build
25   perl Build test
26   perl Build install
27
28If you wish, you may use the old MakeMaker style instead:
29
30   perl Makefile.PL
31   make
32   make test
33   make install
34
35DEPENDENCIES
36
37This module requires these other modules and libraries:
38
39  Math::Symbolic
40  Test::More
41  Memoize
42  Data::Dumper
43  Parse::RecDescent
44
45SEE ALSO
46
47Current versions of this module may be found on http://steffen-mueller.net or
48CPAN.
49
50Please send your suggestions, inquiries, and feedback to
51math-symbolic-support at lists dot sourceforge dot net. Feel free to
52subscribe to the developers mailing list:
53math-symbolic-develop at lists dot sourceforge dot net
54
55Math::SymbolicX::BigNum and Math::SymbolicX::ComplexNumbers for
56examples of usage.
57
58Math::Symbolic and Math::Symbolic::Parser for the full scoop if info.
59
60COPYRIGHT AND LICENCE
61
62Copyright (C) 2003-2009 Steffen Mueller
63
64This library is free software; you can redistribute it and/or modify
65it under the same terms as Perl itself.
66