forked from jlapeyre/mixima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mixima.mac
82 lines (67 loc) · 1.92 KB
/
mixima.mac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* assume we are working in the Mixima top-level directory */
load ("compatibility/set_file_search_paths.mac");
set_file_search_paths (".");
load("mockmma-mixima-shell.lisp"); /* some defuns needed from here. should be moved */
load("helper.lisp");
load("defs.lisp");
load("function.lisp");
load("newblock.lisp");
load("assign.lisp");
load("expressions.lisp");
load("vars.mac");
load("flow_control.mac");
load("flow_control_lisp.lisp");
load("block.lisp");
load("mixdoc.lisp");
load("table.lisp");
load("list.lisp");
load("sum_product.lisp");
load("derivatives_integrals.lisp");
load("roots.lisp");
load("limit.lisp");
load("newton.mac");
load("dttodiff.mac");
load("matrix.lisp");
load("simplify.lisp");
/* these next two files have disappeared;
* from comments elsewhere, I speculate they were defining functions
* with the same names as some built-in (Lisp or Maxima?) functions.
load("shadow.mac");
load("shadow_math_functions.mac");
*/
load("predicates.lisp");
load("predicates.mac");
load("reformat.lisp");
load("limit.lisp");
/* this next file has disappeared.
load("function_list.lisp");
*/
load("polynomials.mac");
load("combinatorics.mac");
load("matrix.mac");
load("devel.mac");
load("incr_decr.lisp");
load("mma_translator.mac");
/* end of comaptibility function lisp code */
/* On some broken installations, this lapack package is broken */
/* load("lapack"); */
/*
Simplifying trig functions eg cos(%pi * 1/5) --> (sqrt(5)+1)/4
Must be loaded for this to work.
*/
load(ntrig);
/*
This appears not to be autoloaded, but no rtests use it now.
So disable loading it here. It would be need if prob. dist. things are added later
load(distrib);
*/
/* This one is autoloaded in our calls to Sum (or, inefficiently Product as well)
load(simplify_sum);
*/
/* We also autoload this.
load(grobner);
*/
/* load("eigen"); This is now autoloaded in stock maxima */
load("list.mac");
load("general.mac");
load("loadlast.mac");