Document contrib/share/levin package
[maxima.git] / share / raddenest / README.md
blob99cfd39ce563f1e18717c11ef690a2bbf26995b6
1 # raddenest
2 A Maxima package for denesting radical expressions
4 Most of the code in this Maxima package is a rather direct port of Sympy's
5 denesting code:
7 http://docs.sympy.org/1.0/_modules/sympy/simplify/sqrtdenest.html
9 The code is licensed under the GPL-compatible "3-clause BSD license".
11 More information can be found in the comments in `raddenest.mac`.
13 ## Setup
14 Copy the three files to `~/.maxima` (or alternatively some other directory that is searched by Maxima. See `file_search_maxima` for more info.)
16 The package can then be loaded using `load(raddenest)`.
17 To run the testsuite or try the provided demos you may have to point `file_search_demo` and `file_search_tests` to `~/.maxima`:
19 ```
20 file_search_demo: append(["~/.maxima/$$$.dem"],file_search_demo);
21 demo(raddenest);
22 file_search_tests: append(["~/.maxima/$$$.mac"],file_search_tests);
23 testsuite_files:["rtest_raddenest.mac"];
24 run_testsuite(display_all=false, tests=["rtest_raddenest.mac"]);
25 ```