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

..03-May-2022-

lib/Math/Symbolic/Custom/H05-Jun-2013-11237

t/H05-Jun-2013-2115

xt/H05-Jun-2013-128

Build.PLH A D05-Jun-2013458 2115

ChangesH A D05-Jun-2013368 1410

MANIFESTH A D05-Jun-2013151 1110

META.ymlH A D05-Jun-2013536 2322

Makefile.PLH A D25-May-2013499 1614

READMEH A D05-Jun-20131.4 KiB5938

README

1Math::Symbolic::Custom::Contains
2================================
3
4This module extends the functionality of Math::Symbolic by offering
5facilities to test a Math::Symbolic tree for existance of a specific
6subtree in the Math::Symbolic tree.
7
8As of version 1.00, this has only been implemented for operators via
9the contains_operator method.
10
11INSTALLATION
12
13To install this module type the following:
14
15   perl Build.PL
16   ./Build
17   ./Build test
18   ./Build install
19
20On platforms that don't support the "./" notation, that would be:
21
22   perl Build.PL
23   perl Build
24   perl Build test
25   perl Build install
26
27If you wish, you may use the old MakeMaker style instead:
28
29   perl Makefile.PL
30   make
31   make test
32   make install
33
34DEPENDENCIES
35
36This module requires these other modules and libraries:
37
38  Test::More (version 0.44 and up)
39  Math::Symbolic (version 0.129 and up)
40
41SEE ALSO
42
43Current versions of this module may be found on http://steffen-mueller.net or
44CPAN.
45
46Please send feedback, bug reports, and support requests to one of the
47contributors or the Math::Symbolic mailing list.
48
49List of contributors:
50
51  Steffen M�ller, symbolic-module at steffen-mueller dot net
52
53COPYRIGHT AND LICENCE
54
55Copyright (C) 2004-2006, 2013 Steffen Mueller
56
57This library is free software; you can redistribute it and/or modify
58it under the same terms as Perl itself.
59