mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
ad4f267b7a
search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl
20 lines
906 B
Plaintext
20 lines
906 B
Plaintext
This module is an extension to the Math::Symbolic module. A basic
|
|
familiarity with that module is required.
|
|
|
|
Math::Symbolic offers some builtin simplification routines. These,
|
|
however, are not capable of complex simplifications. This extension offers
|
|
facilities to override the default simplification routines through means
|
|
of subclassing this module. A subclass of this module is required to
|
|
define a simplify object method that implements a simplification of
|
|
Math::Symbolic trees.
|
|
|
|
There are two class methods to inherit: register and unregister. Calling
|
|
the register method on your subclass registers your class as providing the
|
|
simplify method that is invoked whenever simplify() is called on a
|
|
Math::Symbolic::Operator object.
|
|
|
|
Calling unregister on your subclass restores whichever simplification
|
|
routines where in place before.
|
|
|
|
WWW: https://metacpan.org/release/Math-Symbolic-Custom-Simplification
|