-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompiler.js
180 lines (145 loc) · 3.98 KB
/
compiler.js
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*
Copyright (C) 2023 clibraries
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
function LookupNode(row, col) {
this.row = row;
this.col = col;
}
function MultiplyNode(left, right) {
this.left = left;
this.right = right;
}
function SumNode(terms) {
this.terms = terms;
}
function NegateNode(expr) {
this.expr = expr;
}
function determinantExpr(n) {
var mask = new Uint8Array(n).fill(0);
function submatrix(row) {
if (row == n - 1) {
for (var col = 0; col < n; ++col) {
if (!mask[col]) {
return new LookupNode(row, col);
}
}
throw Error("assertion failure");
}
var sign = 1;
var terms = [];
for (var col = 0; col < n; ++col) {
if (mask[col]) continue;
mask[col] = 1;
var coef = new LookupNode(row, col);
if (!sign) {
coef = new NegateNode(coef);
}
terms.push(new MultiplyNode(coef, submatrix(row + 1)));
sign = !sign;
mask[col] = 0;
}
return new SumNode(terms);
}
return submatrix(0);
}
function isAtom(expr) {
return (expr instanceof LookupNode);
}
function zeroPad(num, digits) {
var suffix = (num | 0).toString();
var prefix = "";
for (var j = 0; j < digits - suffix.length; ++j) {
prefix += "0";
}
return prefix + suffix;
}
function SubExpr() {
this.id = 0;
this.use = 0;
}
function compile(topExpr, n) {
var digits = 1 + ((n / 10) | 0);
function compileExpr(e) {
if (e instanceof LookupNode) {
return "m[" + zeroPad(e.row, digits) + "][" + zeroPad(e.col, digits) + "]";
} else if (e instanceof MultiplyNode) {
var a = [compileExpr(e.left), compileExpr(e.right)];
a.sort((a, b) => a.localeCompare(b));
return a[0] + " * " + a[1];
} else if (e instanceof SumNode) {
var a = e.terms.map(compileExpr);
a.sort((a, b) => a.localeCompare(b));
return "(" + a.join(" + ") + ")";
} else if (e instanceof NegateNode) {
return "-" + compileExpr(e.expr);
} else {
throw Error("unknown error");
}
}
function varName(id) {
return "a" + id;
}
var idCounter = 1;
var dupTable = {};
function wrapWithDedupLogic(f) {
return (expr) => {
var text = f(expr);
if (isAtom(expr)) {
expr.id = text;
} else {
var id = dupTable[text];
if (id === undefined) {
id = varName(idCounter++);
dupTable[text] = id;
}
expr.id = id;
}
return text;
};
}
compileExpr = wrapWithDedupLogic(compileExpr);
var math = compileExpr(topExpr);
function varDef(id, val) {
return "var " + id + " = " + val + ";\n";
}
var defined = {};
var prog = "";
function genProg(e) {
if (defined[e.id]) {
return;
}
defined[e.id] = true;
if (e instanceof LookupNode) {
} else if (e instanceof MultiplyNode) {
genProg(e.left);
genProg(e.right);
prog += varDef(e.id, "" + e.left.id + " * " + e.right.id);
} else if (e instanceof SumNode) {
e.terms.forEach(genProg);
prog += varDef(e.id, e.terms.map(p => p.id).join(" + "));
} else if (e instanceof NegateNode) {
genProg(e.expr);
prog += varDef(e.id, "-" + e.expr.id);
} else {
throw Error("unknown error");
}
}
genProg(topExpr);
prog += "return " + topExpr.id + ";\n";
return {
program: prog,
math: math
};
}