-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASTNode.c
489 lines (434 loc) · 12.3 KB
/
ASTNode.c
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
//
// ASTNode.c
// Matrix Calculator
//
// Created by Sen on 13-4-21.
#include <stdio.h>
#include "ASTNode.h"
#include <string.h>
#include <stdlib.h>
#include "functions.h"
#include <assert.h>
/* some internal functions for evaluation */
static void evaluateASTNodeExpression(ASTNode *node);
static void evaluateASTNodeSimpleExp(ASTNode *node);
static void evaluateASTNodeTerm(ASTNode *node);
static void evaluateASTNodeFactor(ASTNode *node);
static void evaluateASTNodeSubMatrixList(ASTNode *node);
static void evaluateASTNodeSubMatrixListRow(ASTNode *node);
static void evaluateASTNodeSubMatrix(ASTNode *node);
//static void evaluateASTNodeVectorExp(ASTNode *node);
static void evaluateASTNodeArgList(ASTNode *node);
static void evaluateASTNodeArg(ASTNode *node);
static void evaluateASTNodeFuncExp(ASTNode *node);
static void evaluateASTNodeBracketedMatrix(ASTNode *node);
extern MatList *matrixList;
extern MatList *currentMat;/* To record the number of used matlist in matrixList*/
extern int error_sort;
extern int get_element;
extern int get_submatrix;
const char typeList[][IDMAXLENGTH+1] = {
"DefaultType", /* maybe useful for initialization */
"Expression", /* the type of one complete expression */
"SimpleExp",
"Term",
"Factor",
"SubMatrixList",
"SubMatrixListRow",
"SubMatrix",
"ArgList",
"Arg",
"FuncExp",
"Identifier",
"Num",
"VectorExp",
"Colon", /* a special type of vector exp */
"BracketedMatrix",
};
const char subTypeList[][IDMAXLENGTH+1] = {
/* used for those without type */
"DefaultSubType",
/* 3 derivations of exp */
"ExpSimpleAssign", /* ID = xxx */
"ExpPartAssign", /* ID(X,Y) = xxx */
"ExpSimpleExp",
/* 3 derivations of simpleExp */
"SimpleExpTerm",
"SimpleExpPlus",
"SimpleExpMinus",
"SimpleExpPower",
/* 4 derivations of term */
"TermFactor",
"TermTimes",
"TermDivide",
"TermMod",
"TermTurn",
/* 6 derivations of factor */
"FactorParen",
"FactorID",
"FactorFuncExp",
"FactorNumber",
"FactorVectorExp",
"FactorBracketedMatrix",
/* 2 derivations of subMatrixList */
"SubMatrixListSingle",
"SubMatrixListMultiple",
/* 2 derivations of subMatrixListRow (COMMA and space versions are combined) */
"SubMatrixListRowSingle",
"SubMatrixListRowMultiple",
/* 4 derivations of subMatrix */
"SubMatrixFuncExp",
"SubMatrixID",
"SubMatrixVectorExp",
"SubMatrixNumber",
/* 2 derivations of argList */
"ArgListSingle",
"ArgListMultiple",
/* 4 derivations of arg */
"ArgNumber",
"ArgVectorExp",
"ArgID",
"ArgColon",
};
ASTNode *createASTNode(NodeType type, NodeSubType subType){
ASTNode *tmp = (ASTNode *)malloc(sizeof(ASTNode));
tmp->type = type;
tmp->subType = subType;
tmp->l = NULL;
tmp->r = NULL;
tmp->a = NULL;
strcpy(tmp->identifier, "[undefined]");
tmp->mat = createEmptyMatrix();
tmp->start = 0;
tmp->end = 0;
tmp->step = 0;
tmp->scalarValue = 0;
tmp->evaluated = 0;
//tmp->nextArg = NULL;
#ifdef DEBUGGING_ON
printf("creating node %p\n",tmp);
#endif
return tmp;
}
void deleteASTNode(ASTNode *node){
if (node==NULL){
return;
} else {
#ifdef DEBUGGING_ON
printf("deleting node %p\n", node);
#endif
deleteASTNode(node->l);
deleteASTNode(node->r);
deleteASTNode(node->a);
deleteMatrix(&(node->mat));
free(node);
return;
}
}
void evaluateASTNode(ASTNode *node){
if (node == NULL || node->evaluated) { /* evaluation unnecessary */
return;
} else {
evaluateASTNode(node->l);
evaluateASTNode(node->r);
evaluateASTNode(node->a);
switch (node->type) {
case Expression:
evaluateASTNodeExpression(node);
break;
case SimpleExp:
evaluateASTNodeSimpleExp(node);
break;
case Term:
evaluateASTNodeTerm(node);
break;
case Factor:
evaluateASTNodeFactor(node);
break;
case SubMatrixList:
evaluateASTNodeSubMatrixList(node);
break;
case SubMatrixListRow:
evaluateASTNodeSubMatrixListRow(node);
break;
case SubMatrix:
evaluateASTNodeSubMatrix(node);
break;
case ArgList:
evaluateASTNodeArgList(node);
break;
case Arg:
evaluateASTNodeArg(node);
break;
case FuncExp:
evaluateASTNodeFuncExp(node);
break;
case BracketedMatrix:
evaluateASTNodeBracketedMatrix(node);
break;
default:
printf("ERROR!!! the node must have been evaluated!!!\n");
break;
}
node->evaluated = 1; /* finished evaluation */
return;
}
}
void traverseASTNode(ASTNode *node){
if (node == NULL) {
return;
} else {
displayInternalInfoOfASTNode(node);
traverseASTNode(node->l);
traverseASTNode(node->r);
traverseASTNode(node->a);
}
}
void displayInternalInfoOfASTNode(ASTNode *node){
if (node == NULL) {
return;
} else {
/* show type and subtype */
printf("type: %s - %s\n",typeList[node->type],subTypeList[node->subType]);
displayMatrix(node->mat);
/* show more detail */
switch (node->type) {
case Num:
printf("scalarValue: %f\n", node->scalarValue);
break;
case VectorExp:
printf("node->start:%f, node->step:%f, node->end:%f\n",node->start,node->step,node->end);
default:
break;
}
}
}
void evaluateASTNodeExpression(ASTNode *node){
MatList *p;
Matrix result;
ASTNode *argNode[10];
Number figure;
switch (node->subType) {
case ExpSimpleAssign:
p = intoMatList(node->l->identifier,node->r->mat);
matrixList->mat = cloneMatrix(p->mat);
displayInternalInfoOfMatlist(p);
node->mat = cloneMatrix(node->r->mat);
break;
case ExpPartAssign: /* Still not written*/
p = checkMatList(node->l->identifier);
argNode[0] = getNthArgFromArgList(node->r,1);
argNode[1] = getNthArgFromArgList(node->r,2);
figure = readOneElementOfMatrix(node->a->mat,1,1);
matrixList->mat = createEyeMatrix(1);
changeOneElementOfMatrix(matrixList->mat,1,1,figure);
changeOneElementOfMatrix(p->mat,(int)readOneElementOfMatrix(argNode[0]->mat,1,1),(int)readOneElementOfMatrix(argNode[1]->mat,1,1),figure);
printf("%s(%d,%d) = \n",p->identifier,(int)readOneElementOfMatrix(argNode[0]->mat,1,1),(int)readOneElementOfMatrix(argNode[1]->mat,1,1));
printf("%f\n",figure);
break;
case ExpSimpleExp:
/*just clone the result*/
node->mat = cloneMatrix(node->l->mat);
matrixList->mat = cloneMatrix(node->mat);
displayMatrix(node->mat);
break;
default:
break;
}
return;
}
void evaluateASTNodeSimpleExp(ASTNode *node){
switch (node->subType) {
case SimpleExpTerm:
/*just clone the result*/
node->mat = cloneMatrix(node->l->mat);
break;
case SimpleExpPlus:
node->mat = addMatrix(node->l->mat, node->r->mat);
break;
case SimpleExpMinus:
node->mat = minusMatrix(node->l->mat, node->r->mat);
break;
case SimpleExpPower:
node->mat = powerMatrix(node->l->mat, (int)readOneElementOfMatrix(node->r->mat,1,1));
break;
default:
break;
}
return;
}
void evaluateASTNodeTerm(ASTNode *node){
switch (node->subType) {
case TermFactor:
/*just clone the result*/
node->mat = cloneMatrix(node->l->mat);
break;
case TermTimes:
node->mat = multiplyMatrix(node->l->mat, node->r->mat);
break;
case TermDivide:
node->mat = divideMatrix(node->l->mat, node->r->mat);
break;
case TermMod:
node->mat = modMatrix(node->l->mat, node->r->mat);
break;
case TermTurn:
node->mat = turnMatrix(node->l->mat);
break;
default:
break;
}
return;
}
void evaluateASTNodeFactor(ASTNode *node){
MatList *p;
switch (node->subType) {
case FactorParen:
case FactorFuncExp:
/*just clone the result*/
node->mat = cloneMatrix(node->l->mat);
break;
case FactorNumber:
node->mat = createSingletonMatrix(node->l->scalarValue);
break;
case FactorID:
strcpy(node->identifier, node->l->identifier);
p = outMatList(node->identifier);
if (strcmp(p->identifier,node->identifier)==0){
node->mat = cloneMatrix(p->mat);}
break;
case FactorBracketedMatrix:
node->mat = cloneMatrix(node->l->mat);
break;
/* some work left undone */
default:
break;
}
return;
}
void evaluateASTNodeBracketedMatrix(ASTNode *node){
switch (node->subType) {
case DefaultSubType:
node->mat = cloneMatrix(node->l->mat);
break;
default:
break;
}
return;
}
void evaluateASTNodeSubMatrixList(ASTNode *node){
switch (node->subType) {
case SubMatrixListSingle:
node->mat = cloneMatrix(node->l->mat);
break;
case SubMatrixListMultiple:
node->mat = cmbMatrixList(node->l->mat,node->r->mat);
break;
default:
break;
}
return;
}
void evaluateASTNodeSubMatrixListRow(ASTNode *node){
switch (node->subType) {
case SubMatrixListRowSingle:
node->mat = cloneMatrix(node->l->mat);
break;
case SubMatrixListRowMultiple:
node->mat = cmbMatrixListRow(node->l->mat,node->r->mat);
break;
default:
break;
}
return;
}
void evaluateASTNodeSubMatrix(ASTNode *node){
switch (node->subType) {
case SubMatrixVectorExp:
#ifdef DEBUGGING_ON
printf("evaluate SubMatrixVectorExp!\n");
#endif
node->l->mat = createBracketedMatrix(node->l->start,node->l->step,node->l->end);
node->mat = cloneMatrix(node->l->mat);
break;
case SubMatrixID:
node->mat = callFunc(node->l->identifier, node->r);
break;
case SubMatrixNumber:
node->mat = createSingletonMatrix(node->l->scalarValue);
break;
default:
break;
}
return;
}
void evaluateASTNodeArgList(ASTNode *node){
return;
}
void evaluateASTNodeArg(ASTNode *node){
MatList *p;
switch (node->subType) {
case ArgNumber:
node->mat = createSingletonMatrix(node->l->scalarValue);
break;
case ArgID:
strcpy(node->identifier, node->l->identifier);
p = outMatList(node->identifier);
if (strcmp(p->identifier,node->identifier)==0){
node->mat = cloneMatrix(p->mat);}
get_submatrix = 1;
break;
case ArgVectorExp:
node->l->mat = createBracketedMatrix(node->l->start,node->l->step,node->l->end);
node->mat = cloneMatrix(node->l->mat);
get_submatrix = 1;
break;
case ArgColon:
node->mat = createEyeMatrix(0);
//changeOneElementOfMatrix(node->mat,1,1,COLONLABEL);/*COLONLABEL = 0 */
break;
default:
break;
}
return;
}
void evaluateASTNodeFuncExp(ASTNode *node){
node->mat = callFunc(node->l->identifier, node->r);
return;
}
int getNumberOfArgs(ASTNode *node){
assert(node->type == ArgList);
ASTNode *tmp;
int argc;
tmp = node;
argc = 0;
while ((tmp != NULL) && (tmp->subType==ArgListMultiple) ) {
argc = argc + 1;
tmp = tmp->l;
}
argc = argc + 1;
return argc;
}
ASTNode *getNthArgFromArgList(ASTNode *node, int N){
int argc; /* number of args */
int leftDepth;
int i;
ASTNode *tmp;
assert(node->type == ArgList);
argc = getNumberOfArgs(node);
#ifdef DEBUGGING_ON
printf("number of args: %d\n.", argc);
#endif
assert(N<=argc);
leftDepth = argc-N;
for (tmp = node, i = 0; i < leftDepth; i++) {
tmp = tmp->l;
}
assert( (tmp->subType == ArgListSingle) ||
(tmp->subType == ArgListMultiple));
if (tmp->subType == ArgListSingle) {
return tmp->l;
} else {
return tmp->r;
}
}