summaryrefslogtreecommitdiff
path: root/yacas.c
blob: e387bce2045ab69eb50d06ec42a48a4673646971 (plain)
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
/*
 * Franklin Wei
 * 19 May 2018
 * Northwest Guilford High School
 * yaCAS - "Yet Another Computer Algebra System"
 *
 * This is a program to manipulate algebraic expressions. It features
 * a way of representing arbitrary expressions in memory, a parser to
 * convert to and from standard mathematical notation, and functions
 * to simplify, differentiate, and integrate such
 * expressions. Additionally, it can function as a simple numerical
 * calculator.
 *
 * Expressions are represented by an abstract syntax tree, a node of
 * which is represented by a "struct expression" object (see
 * definition below). Expressions are passed by reference to most
 * functions, but most functions will allocate an entirely new
 * expression tree to return their results. This results in a not
 * insignificant amount of overhead as memory allocations and frees
 * take place, but also greatly simplifies the memory model.
 *
 * Variables are supported through a simple hash map. Strings are
 * mapped to expression trees through the "struct variable" object,
 * and the expression trees are then substituted into the computation
 * as needed. There is a special variable called . that stores the
 * result of the previous computation.
 *
 * Differentiation is performed recursively on the expression
 * tree. The differentiation of most expressions is performed by
 * recursing down the tree, applying the basic rules of
 * differentiation to combine the derivatives of child nodes. See the
 * "diff" function for implementation.
 *
 * The expression parser is rather limited when it comes to
 * tokenization. In its current form, it relies on tokens in the
 * expression, say, "x ^ 2", being separated with spaces. That is,
 * typing an expression like "x^2", without spaces between tokens,
 * will result in undesired behavior (in this case, the parser wil
 * view the token "x^2" as a variable name, not an expression). Just
 * be sure to always separate tokens with a space, and all will be
 * well.
 *
 * Finally, when using the exponential function, the form "exp ( x )"
 * is preferred over "e ^ x", since the parser will recognize exp() as
 * a special function and know about its special properties, while e^x
 * will be treated as some constant raised to a power, without the
 * special features of the exp() being recognized.
 *
 * Please note that this is a work in progress. The simplification,
 * equality checking, and integration algorithms used are rudimentary
 * at best, although differentiation should be relatively robust.
 *
 * Usage instructions: compile with no optimization, as this may cause
 * undefined behavior, and link with -lm and -lreadline:
 *
 *    cc -O0 yacas.c -o yacas -lm -lreadline
 *
 * Then run with no arguments and you should be presented with a
 * "yaCAS> " prompt. From here, you can type "help" at the command
 * line for an overview of the basic syntax.
 *
 * Readline can be disabled by commenting out the #define below (in
 * which case the getline() function will be used instead):
 */

#define USE_READLINE

#include <assert.h>
#include <ctype.h>
#include <math.h>
#include <setjmp.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>

#ifdef USE_READLINE
#include <readline/readline.h>
#include <readline/history.h>
#endif

/* tool for manipulating algebraic expressions */

/* packed to save memory with large expressions */
struct expression {
    char type; /* T_* */
    union {
        double constant; /* T_CONST */
        char *varname; /* T_VAR, dynamically allocated */
        struct {
            char op; /* OP_* */
            struct expression *left, *right;
        } subexpr; /* T_SUBEXPR */
        struct {
            char fn /* FN_* */;
            struct expression *operand, *operand2;
        } specfunc; /* T_SPECFUNC */
    };
} __attribute__((packed));

enum { OP_POW = 0, OP_MUL, OP_DIV, OP_ADD, OP_SUB, OP_DIFF, OP_INT, OP_ASSIGN, OP_EQUALS, OP_LAST, /* not a real operator: */ OP_LPAREN };
enum { T_CONST = 0, T_VAR, T_SUBEXPR, T_SPECFUNC };
enum { FN_LOG = 0, FN_EXP, FN_SIN, FN_COS, FN_TAN, FN_CSC, FN_SEC, FN_COT, FN_ASIN, FN_ACOS, FN_ATAN, FN_ACSC, FN_ASEC, FN_ACOT, FN_ABS, FN_NEGATE, FN_SQRT, FN_LAST };
enum { RIGHT, LEFT };

const char *op_names[] = {
    "^", "*", "/", "+", "-", "diff", "int", "=", "==", "none", "("
};

const char *type_names[] = {
    "constant", "variable", "expression", "function", "null"
};

const int op_assoc[] = {
    RIGHT, LEFT, LEFT, LEFT, LEFT, LEFT, LEFT, LEFT
};

const bool op_commutative[] = {
    false, true, false, true, false, false, false, true
};

const char *fn_names[] = {
    "log", "exp", "sin", "cos", "tan", "csc", "sec", "cot", "asin", "acos", "atan", "acsc", "asec", "acot", "abs", "-", "sqrt"
};

bool is_constant(struct expression *expr);
bool is_constvar(const char *name);
bool is_var(const char *name);
bool check_boolean(const char *varname);
double eval_numexpr(struct expression *expr);
double eval_numexpr_and_free(struct expression *expr);
struct expression *diff(struct expression *expr, const char *var);
struct expression *integrate(struct expression *expr, const char *var);
struct expression *dup_expr(struct expression *expr);
struct expression *eval_expr(struct expression *expr);
struct expression *simp(struct expression *expr);
void print_expr(struct expression *expr);
void setvar(const char *name, struct expression *value, bool constant);

bool simp_progress = false;
bool memdiag = false;
bool interactive = true;
bool vars_ok = true;

jmp_buf restore;

void __attribute__((noreturn)) fail(const char *msg)
{
    fprintf(stderr, "%s\n", msg);
    longjmp(restore, 1);
}

void __attribute__((noreturn)) fatal(const char *msg)
{
    fprintf(stderr, "%s\n", msg);
    exit(1);
}

int memusage = 0, peakmem = 0;

#define MAX_MEMUSAGE 512*1024*1024

void check_mem(void)
{
    if(memusage > MAX_MEMUSAGE)
        fatal("OOM");
    if(memusage > peakmem)
        peakmem = memusage;
}

struct expression *new_var(const char *varname)
{
    struct expression *new = calloc(1, sizeof(*new));
    new->type = T_VAR;
    new->varname = strdup(varname);
    memusage += sizeof(*new);
    check_mem();
    if(check_boolean("memdiag"))
        printf("new var %p = %s\n", new, varname);
    return new;
}

struct expression *new_const(double x)
{
    struct expression *new = calloc(1, sizeof(*new));
    new->type = T_CONST;
    new->constant = x;
    memusage += sizeof(*new);
    check_mem();
    if(check_boolean("memdiag"))
        printf("new const %p = %g\n", new, x);
    return new;
}

struct expression *new_op(int op, struct expression *l, struct expression *r)
{
    struct expression *new = calloc(1, sizeof(*new));
    new->type = T_SUBEXPR;
    new->subexpr.op = op;
    new->subexpr.left = l;
    new->subexpr.right = r;
    memusage += sizeof(*new);
    check_mem();
    if(check_boolean("memdiag"))
        printf("new op %p %s\n", new, op_names[(int)op]);
    return new;
}

struct expression *new_specfunc(int fn, struct expression *expr)
{
    struct expression *new = calloc(1, sizeof(*new));
    new->type = T_SPECFUNC;
    new->specfunc.fn = fn;
    new->specfunc.operand = expr;
    memusage += sizeof(*new);
    if(check_boolean("memdiag"))
        printf("new specfunc %p %s\n", new, fn_names[(int)fn]);
    return new;
}

int expr_prec(struct expression expr)
{
    switch(expr.type)
    {
    case T_CONST:
    case T_VAR:
    case T_SPECFUNC:
        return 10;
    case T_SUBEXPR:
        switch(expr.subexpr.op)
        {
        case OP_LPAREN:
            return -1; /* must be lowest */
        case OP_ASSIGN:
            return 0;
        case OP_EQUALS:
            return 1;
        case OP_DIFF:
        case OP_INT:
            return 2;
        case OP_ADD:
        case OP_SUB:
            return 3;
        case OP_MUL:
        case OP_DIV:
            return 4;
        case OP_POW:
            return 5;
        default:
            fatal("fall through");
        }
    default:
        fatal("fall through");
    }
}

void free_expr(struct expression *expr)
{
    if(expr)
    {
        switch(expr->type)
        {
        case T_SUBEXPR:
            free_expr(expr->subexpr.left);
            free_expr(expr->subexpr.right);
            break;
        case T_SPECFUNC:
            free_expr(expr->specfunc.operand);
            break;
        case T_VAR:
            free(expr->varname);
            break;
        default:
            break;
        }
        memusage -= sizeof(struct expression);
        if(check_boolean("memdiag"))
            printf("freeing %p\n", expr);
        free(expr);
    }
}

struct expression *eval_and_free(struct expression *expr)
{
    struct expression *ret = eval_expr(expr);
    free_expr(expr);
    return ret;
}

struct expression *simp_and_free(struct expression *expr)
{
    struct expression *ret = simp(expr);
    free_expr(expr);
    return ret;
}

struct expression *diff_and_free(struct expression *expr, const char *var)
{
    struct expression *ret = diff(expr, var);
    free_expr(expr);
    return ret;
}

struct expression *integrate_and_free(struct expression *expr, const char *var)
{
    struct expression *ret = integrate(expr, var);
    free_expr(expr);
    return ret;
}

/* simplify as much as possible, while freeing original */
struct expression *simp_and_free_max(struct expression *expr)
{
    do {
        simp_progress = false;
        expr = simp_and_free(expr);
    } while(simp_progress);
    return expr;
}

bool is_muldiv(struct expression *expr)
{
    return expr->type == T_SUBEXPR && (expr->subexpr.op == OP_MUL || expr->subexpr.op == OP_DIV);
}

/* returns true iff expr or a subexpr depends on varname in some way */
bool expr_references(struct expression *expr, const char *varname)
{
    switch(expr->type)
    {
    case T_CONST:
        return false;
    case T_VAR:
        return !strcmp(expr->varname, varname);
    case T_SUBEXPR:
        return expr_references(expr->subexpr.left, varname) || expr_references(expr->subexpr.right, varname);
    case T_SPECFUNC:
        return expr_references(expr->specfunc.operand, varname);
    default:
        fatal("fall through");
    }
}

/* simple stuff, doesn't always work */
bool expr_equals(struct expression *l, struct expression *r)
{
    /* first the low-hanging fruit */
    if(l == r)
        return true;

    /* duplicate them first so we can modify them if need be */
    l = dup_expr(l);
    r = dup_expr(r);

    l = simp_and_free_max(l);
    r = simp_and_free_max(r);

    /* must come after simplification */
    if(is_constant(l) && is_constant(r))
        return eval_numexpr_and_free(l) == eval_numexpr_and_free(r);

    /* not foolproof */
    if(l->type != r->type)
    {
        free_expr(l);
        free_expr(r);
        return false;
    }

    bool ret = false;

    switch(l->type)
    {
    case T_SUBEXPR:
        if(l->subexpr.op == r->subexpr.op &&
           ((expr_equals(l->subexpr.left, r->subexpr.left) && expr_equals(l->subexpr.right, r->subexpr.right)) ||
            (op_commutative[l->subexpr.op] &&
             expr_equals(l->subexpr.left, r->subexpr.right) && expr_equals(l->subexpr.right, r->subexpr.left))))
            ret = true;
        else
            ret = false;

        free_expr(l);
        free_expr(r);
        return ret;
    case T_SPECFUNC:
        ret = l->specfunc.fn == r->specfunc.fn && expr_equals(l->specfunc.operand, r->specfunc.operand);
        free_expr(l);
        free_expr(r);
        return ret;
    case T_VAR:
        /* symbolic comparison */
        if(!is_var(l->varname) && !is_var(r->varname))
        {
            ret = !strcmp(l->varname, r->varname);
            free_expr(l);
            free_expr(r);
            return ret;
        }
        break;
    default:
        break;
    }

    /* try evaluating them and recurse */
    l = eval_and_free(l);
    r = eval_and_free(r);

    ret = expr_equals(l, r);

    free_expr(l);
    free_expr(r);

    return ret;
}

#define VARMAP_SIZE 20

/* chained hash map */
struct variable {
    char *name; /* dynamic */
    struct expression *value;
    bool constant;
    struct variable *next;
} *varmap[VARMAP_SIZE];

uint32_t var_hash(const char *str)
{
    uint32_t hash = 5381;
    char c;
    while((c = *str++))
    {
        hash = ((hash << 5) + hash) ^ c;
    }

    return hash;
}

bool is_constvar(const char *name)
{
    uint32_t idx = var_hash(name) % VARMAP_SIZE;

    struct variable *i = varmap[idx];
    while(i)
    {
        if(!strcmp(i->name, name))
            return i->constant;
        i = i->next;
    }

    return false;
}

/* value must be persistent, but name doesn't need to be */
void setvar(const char *name, struct expression *value, bool constant)
{
    uint32_t idx = var_hash(name) % VARMAP_SIZE;

    struct variable *old, *i = varmap[idx];
    old = i;
    while(i)
    {
        if(!strcmp(i->name, name))
        {
            /* free old value */
            free_expr(i->value);
            i->value = value;
            return;
        }
        i = i->next;
    }

    /* not found, insert as first element in chain */
    struct variable *newvar = calloc(1, sizeof(struct variable));
    newvar->name = strdup(name);
    newvar->constant = constant;
    newvar->next = old;
    newvar->value = value;

    varmap[idx] = newvar;
}

void dumpvars(void)
{
    for(int idx = 0; idx < VARMAP_SIZE; ++idx)
    {
        struct variable *i = varmap[idx];
        while(i)
        {
            printf("%s = ", i->name);
            print_expr(i->value);
            printf("(%s)\n", type_names[(int)i->value->type]);
            i = i->next;
        }
    }
}

void freevars(void)
{
    /* can no longer access vars */
    vars_ok = false;

    for(int idx = 0; idx < VARMAP_SIZE; ++idx)
    {
        struct variable *i = varmap[idx];
        while(i)
        {
            free_expr(i->value);
            free(i->name);
            struct variable *next = i->next;
            free(i);
            i = next;
        }
    }
}

void sigint(int sig)
{
    freevars();
}

bool is_var(const char *name)
{
    uint32_t idx = var_hash(name) % VARMAP_SIZE;

    struct variable *i = varmap[idx];

    while(i)
    {
        if(!strcmp(i->name, name))
            return true;
        i = i->next;
    }

    return false;
}

struct expression *getvar(const char *name)
{
    uint32_t idx = var_hash(name) % VARMAP_SIZE;

    struct variable *i = varmap[idx];
    while(i)
    {
        if(!strcmp(i->name, name))
            return i->value;
        i = i->next;
    }

    return NULL;
}

bool delvar(const char *name)
{
    uint32_t idx = var_hash(name) % VARMAP_SIZE;

    struct variable *i = varmap[idx], *last = NULL;

    while(i)
    {
        if(!strcmp(i->name, name))
        {
            if(last)
                last->next = i->next;
            else
                varmap[idx] = NULL;
            free_expr(i->value);
            free(i->name);
            free(i);
            return true;
        }
        last = i;
        i = i->next;
    }

    return false;
}

/* check whether a variable is nonzero without any intermediate functions */
bool check_boolean(const char *varname)
{
    if(!vars_ok)
        return false;
    struct expression *expr = getvar(varname);
    if(!expr)
        return false;
    switch(expr->type)
    {
    case T_CONST:
        return expr->constant == 1;
    default:
        return false;
    }
}

bool is_constant(struct expression *expr)
{
    switch(expr->type)
    {
    case T_CONST:
        return true;
    case T_VAR:
        /* see if there is an expression corresponding to var */
        if(is_var(expr->varname))
            return is_constant(getvar(expr->varname));

        /* unknown, assume false */
        return false;
    case T_SUBEXPR:
        return is_constant(expr->subexpr.left) && is_constant(expr->subexpr.right);
    case T_SPECFUNC:
        return is_constant(expr->specfunc.operand);
    default:
        fatal("fall through");
    }
}

/* returns true if expr is a constant multiple of some variable (if
 * the variable is not a constant, it will be evaluated recursively) */
bool is_constant_mult(struct expression *expr, double *coef, const char **varname)
{
    switch(expr->type)
    {
    case T_CONST:
        return false;
    case T_VAR:
        if(is_var(expr->varname))
            return is_constant_mult(getvar(expr->varname), coef, varname);
        *coef = 1;
        *varname = expr->varname;
        return true;
    case T_SUBEXPR:
        switch(expr->subexpr.op)
        {
        case OP_MUL:
            break;
        }
    case T_SPECFUNC:
        return false;
    }
}

struct expression *dup_expr(struct expression *expr)
{
    switch(expr->type)
    {
    case T_CONST:
        return new_const(expr->constant);
    case T_VAR:
        return new_var(expr->varname);
    case T_SUBEXPR:
        return new_op(expr->subexpr.op, dup_expr(expr->subexpr.left), dup_expr(expr->subexpr.right));
    case T_SPECFUNC:
        return new_specfunc(expr->specfunc.fn, dup_expr(expr->specfunc.operand));
    default:
        fatal("fall through");
    }
}

double eval_specfunc(int fn, double x)
{
    switch(fn)
    {
    case FN_LOG:
        return log(x);
    case FN_EXP:
        return exp(x);
    case FN_SIN:
        return sin(x);
    case FN_COS:
        return cos(x);
    case FN_TAN:
        return tan(x);
    case FN_CSC:
        return 1 / sin(x);
    case FN_SEC:
        return 1 / cos(x);
    case FN_COT:
        return 1 / tan(x);
    case FN_ASIN:
        return asin(x);
    case FN_ACOS:
        return acos(x);
    case FN_ATAN:
        return atan(x);
    case FN_ACSC:
        return asin(1/x);
    case FN_ASEC:
        return acos(1/x);
    case FN_ACOT:
        return atan(1/x);
    case FN_ABS:
        return fabs(x);
    case FN_NEGATE:
        return -x;
    case FN_SQRT:
        return sqrt(x);
    default:
        fatal("fall through");
    }
}

struct expression *eval_op(int op, struct expression *lexpr, struct expression *rexpr)
{
    if(op == OP_DIFF)
    {
        /* allow for syntax in the form f diff x = 2 for evaluating
         * the derivative at x = 2 */
        switch(rexpr->type)
        {
        case T_VAR:
            return diff_and_free(eval_expr(lexpr), rexpr->varname);
        case T_SUBEXPR:
            if(rexpr->subexpr.op == OP_ASSIGN && rexpr->subexpr.left->type == T_VAR && is_constant(rexpr->subexpr.right))
            {
                bool have_old = is_var(rexpr->subexpr.left->varname);

                struct expression *old = NULL;

                /* save state */
                if(have_old)
                {
                    old = dup_expr(getvar(rexpr->subexpr.left->varname));
                    /* delete so it's not a constant */
                    delvar(rexpr->subexpr.left->varname);
                }

                /* get derivative */
                struct expression *deriv = diff_and_free(eval_expr(lexpr), rexpr->subexpr.left->varname);

                /* set variable (duplicate because setvar frees it later */
                setvar(rexpr->subexpr.left->varname, dup_expr(rexpr->subexpr.right), false);

                double val = eval_numexpr_and_free(deriv);

                /* restore */
                if(have_old)
                    setvar(rexpr->subexpr.left->varname, old, false);
                else
                    delvar(rexpr->subexpr.left->varname);

                return new_const(val);
            }
            /* fall through */
        default:
            fail("diff operator must take variable as second operand");
        }
    }
    else if(op == OP_INT)
    {
        struct expression *result = integrate_and_free(eval_expr(lexpr), rexpr->varname);
        if(!result)
            return new_op(op, dup_expr(lexpr), dup_expr(rexpr));
    }
    else if(op == OP_ASSIGN)
    {
        if(lexpr->type != T_VAR)
            fail("assignment requires variable as first operand");
        if(is_constvar(lexpr->varname))
            fail("cannot change constant value");
        if(expr_references(rexpr, lexpr->varname))
            fail("circular reference");

        setvar(lexpr->varname, dup_expr(rexpr), false);
        return dup_expr(rexpr);
    }
    else if(op == OP_EQUALS)
    {
        /* booleans are just 1 or 0 */
        return new_const(expr_equals(rexpr, lexpr));
    }
    else
    {
        if(!(is_constant(lexpr) && is_constant(rexpr)))
        {
            return new_op(op, dup_expr(lexpr), dup_expr(rexpr));
        }

        double l = eval_numexpr(lexpr), r = eval_numexpr(rexpr);
        double ret = 0;

        switch(op)
        {
        case OP_ADD:
            ret = l + r;
            break;
        case OP_SUB:
            ret = l - r;
            break;
        case OP_MUL:
            ret = l * r;
            break;
        case OP_DIV:
            ret = l / r;
            break;
        case OP_POW:
            ret = pow(l, r);
            break;
        default:
            fail("fall through");
        }
        return new_const(ret);
    }
}

/* evaluate constants and execute any operators */
struct expression *eval_expr(struct expression *expr)
{
    switch(expr->type)
    {
    case T_CONST:
        return new_const(expr->constant);
    case T_VAR:
        /* this could fail upon a circular reference */
        if(is_var(expr->varname))
            return eval_expr(getvar(expr->varname));

        /* otherwise keep it symbolic */
        return new_var(expr->varname);
    case T_SUBEXPR:
        return eval_op(expr->subexpr.op, expr->subexpr.left, expr->subexpr.right);
    case T_SPECFUNC:
        if(!is_constant(expr->specfunc.operand))
            return new_specfunc(expr->specfunc.fn, eval_expr(expr->specfunc.operand));
        return new_const(eval_specfunc(expr->specfunc.fn, eval_numexpr(expr->specfunc.operand)));
    default:
        fail("falll through");
    }
}

double eval_numexpr(struct expression *expr)
{
    struct expression *result = eval_expr(expr);
    double x;
    switch(result->type)
    {
    case T_CONST:
        x = result->constant;
        break;
    case T_VAR:
        x = eval_numexpr(getvar(expr->varname));
        break;
    default:
        free_expr(result);
        fail("attempted to evaluate a non-numeric expression");
    }
    free_expr(result);
    return x;
}

double eval_numexpr_and_free(struct expression *expr)
{
    double ret = eval_numexpr(expr);
    free_expr(expr);
    return ret;
}

/* returns an entirely new expression object */
struct expression *simp(struct expression *expr)
{
    if(is_constant(expr))
        return new_const(eval_numexpr(expr));

    switch(expr->type)
    {
    case T_VAR:
        return dup_expr(expr);
    case T_SUBEXPR:
        switch(expr->subexpr.op)
        {
        case OP_ADD:
        case OP_SUB:
            /* cannot simplify 0 - b to b */
            if(is_constant(expr->subexpr.left) && eval_numexpr(expr->subexpr.left) == 0)
            {
                simp_progress = true;
                if(expr->subexpr.op == OP_ADD)
                    return simp(expr->subexpr.right);
                else
                    return new_specfunc(FN_NEGATE, simp(expr->subexpr.right));
            }
            if(is_constant(expr->subexpr.right) && eval_numexpr(expr->subexpr.right) == 0)
            {
                simp_progress = true;
                return simp(expr->subexpr.left);
            }
            if(expr_equals(expr->subexpr.left, expr->subexpr.right))
            {
                simp_progress = true;
                if(expr->subexpr.op == OP_SUB)
                    return new_const(0);
                return new_op(OP_MUL,
                              new_const(2),
                              simp(expr->subexpr.left));
            }
            return new_op(expr->subexpr.op, simp(expr->subexpr.left), simp(expr->subexpr.right));
        case OP_MUL:
            if((is_constant(expr->subexpr.left) && eval_numexpr(expr->subexpr.left) == 0) ||
               (is_constant(expr->subexpr.right) && eval_numexpr(expr->subexpr.right) == 0))
            {
                simp_progress = true;
                return new_const(0);
            }
            if(is_constant(expr->subexpr.left) && eval_numexpr(expr->subexpr.left) == 1)
            {
                simp_progress = true;
                return simp(expr->subexpr.right);
            }
            if(is_constant(expr->subexpr.right) && eval_numexpr(expr->subexpr.right) == 1)
            {
                simp_progress = true;
                return simp(expr->subexpr.left);
            }
            /* both cannot be constant, since that would have been caught earlier */
            if(is_constant(expr->subexpr.left) && is_muldiv(expr->subexpr.right))
            {
                if(is_constant(expr->subexpr.right->subexpr.left))
                {
                    simp_progress = true;
                    return new_op(expr->subexpr.op,
                                  new_const(eval_numexpr(expr->subexpr.left) * eval_numexpr(expr->subexpr.right->subexpr.left)),
                                  dup_expr(expr->subexpr.right->subexpr.right));
                }
                if(is_constant(expr->subexpr.right->subexpr.right))
                {
                    simp_progress = true;
                    if(expr->subexpr.right->subexpr.op == OP_MUL)
                    {
                        return new_op(OP_MUL,
                                      new_const(eval_numexpr(expr->subexpr.left) * eval_numexpr(expr->subexpr.right->subexpr.right)),
                                      dup_expr(expr->subexpr.right->subexpr.left));
                    }
                    else
                        return new_op(OP_MUL,
                                      new_const(eval_numexpr(expr->subexpr.left) / eval_numexpr(expr->subexpr.right->subexpr.right)),
                                      dup_expr(expr->subexpr.right->subexpr.left));
                }
            }

            if(is_constant(expr->subexpr.right) && is_muldiv(expr->subexpr.left))
            {
                if(is_constant(expr->subexpr.left->subexpr.left))
                {
                    simp_progress = true;
                    return new_op(expr->subexpr.op,
                                  new_const(eval_numexpr(expr->subexpr.right) * eval_numexpr(expr->subexpr.left->subexpr.left)),
                                  dup_expr(expr->subexpr.left->subexpr.right));
                }
                if(is_constant(expr->subexpr.left->subexpr.right))
                {
                    simp_progress = true;
                    if(expr->subexpr.left->subexpr.op == OP_MUL)
                    {
                        return new_op(OP_MUL,
                                      new_const(eval_numexpr(expr->subexpr.right) * eval_numexpr(expr->subexpr.left->subexpr.right)),
                                      dup_expr(expr->subexpr.left->subexpr.left));
                    }
                    else
                        return new_op(OP_MUL,
                                      new_const(eval_numexpr(expr->subexpr.right) / eval_numexpr(expr->subexpr.left->subexpr.right)),
                                      dup_expr(expr->subexpr.left->subexpr.left));
                }
            }
            return new_op(expr->subexpr.op, simp(expr->subexpr.left), simp(expr->subexpr.right));
        case OP_DIV:
            if(is_constant(expr->subexpr.right) && eval_numexpr(expr->subexpr.right) == 1)
            {
                simp_progress = true;
                return simp(expr->subexpr.left);
            }
            if(expr_equals(expr->subexpr.left, expr->subexpr.right))
            {
                simp_progress = true;
                return new_const(1);
            }
            return new_op(expr->subexpr.op, simp(expr->subexpr.left), simp(expr->subexpr.right));
        case OP_POW:
            if(is_constant(expr->subexpr.right) && eval_numexpr(expr->subexpr.right) == 0)
            {
                simp_progress = true;
                return new_const(1);
            }
            if(is_constant(expr->subexpr.right) && eval_numexpr(expr->subexpr.right) == .5)
            {
                simp_progress = true;
                return new_specfunc(FN_SQRT, simp(expr->subexpr.left));
            }
            if(is_constant(expr->subexpr.right) && eval_numexpr(expr->subexpr.right) == 1)
            {
                simp_progress = true;
                return simp(expr->subexpr.left);
            }
#if 0
            if(is_constant(expr->subexpr.right) && eval_numexpr(expr->subexpr.right) < 0)
            {
                simp_progress = true;
                return new_op(OP_DIV,
                              new_const(1),
                              new_op(OP_POW,
                                     simp(expr->subexpr.left),
                                     new_const(-eval_numexpr(expr->subexpr.right))));
            }
#endif
            if(expr->subexpr.left->type == T_SUBEXPR && expr->subexpr.left->subexpr.op == OP_POW && is_constant(expr->subexpr.left->subexpr.right) && is_constant(expr->subexpr.right))
            {
                simp_progress = true;
                return new_op(OP_POW, simp(expr->subexpr.left->subexpr.left), new_const(eval_numexpr(expr->subexpr.left->subexpr.right) * eval_numexpr(expr->subexpr.right)));
            }
            return new_op(expr->subexpr.op, simp(expr->subexpr.left), simp(expr->subexpr.right));
        case OP_DIFF:
            return new_op(OP_DIFF, simp(expr->subexpr.left), dup_expr(expr->subexpr.right));
        case OP_INT:
            return new_op(OP_INT, simp(expr->subexpr.left), dup_expr(expr->subexpr.right));
        case OP_ASSIGN:
            return new_op(OP_ASSIGN, dup_expr(expr->subexpr.left), simp(expr->subexpr.right));
        case OP_EQUALS:
            return new_op(OP_EQUALS, dup_expr(expr->subexpr.left), dup_expr(expr->subexpr.right));
        default:
            fatal("fall through");
        }
        break;
    case T_SPECFUNC:
        switch(expr->specfunc.fn)
        {
        case FN_NEGATE:
            if(is_constant(expr->specfunc.operand))
            {
                double val = eval_numexpr(expr->specfunc.operand);
                if(val < 0)
                    return new_const(-val);
            }
            /* fall through */
        default:
            return new_specfunc(expr->specfunc.fn, simp(expr->specfunc.operand));
        }
    default:
        fatal("fall through");
    }
}

/* integrate with respect to "var", treating all other variables as
 * CONSTANTS; probably won't work (in which case it will return NULL) */
struct expression *integrate(struct expression *expr, const char *var)
{
    if(is_constant(expr))
        return new_op(OP_MUL, new_const(eval_numexpr(expr)), new_var(var));

    switch(expr->type)
    {
    case T_CONST:
        return new_op(OP_MUL, new_const(expr->constant), new_var(var));
    case T_VAR:
        if(!strcmp(expr->varname, var))
            return new_op(OP_MUL,
                          new_const(.5),
                          new_op(OP_POW,
                                 new_var(var),
                                 new_const(2)));
        return new_op(OP_MUL, dup_expr(expr), new_var(var));
    case T_SUBEXPR:
        switch(expr->subexpr.op)
        {
        case OP_ADD:
        case OP_SUB:
        {
            /* first try integrating both operands */
            struct expression *lint = integrate(expr->subexpr.left, var);
            struct expression *rint = integrate(expr->subexpr.right, var);
            if(lint && rint)
                return new_op(expr->subexpr.op, integrate(expr->subexpr.left, var), integrate(expr->subexpr.right, var));

            free_expr(lint);
            free_expr(rint);

            /* fail */
            return NULL;
        }

        case OP_MUL:
        {
            /* first try integrating both operands */
            struct expression *lint = integrate(expr->subexpr.left, var);
            struct expression *rint = integrate(expr->subexpr.right, var);

            /* check for constant multiple */
            if(is_constant(expr->subexpr.left))
            {
                return rint ? new_op(OP_MUL,
                                     new_const(eval_numexpr(expr->subexpr.left)),
                                     rint) : rint;
            }
            if(is_constant(expr->subexpr.right))
            {
                return lint ? new_op(OP_MUL,
                                     new_const(eval_numexpr(expr->subexpr.right)),
                                     lint) : lint;
            }
            /* disabled */
#if 0
            /* parts */
            /* check if the expression is in the form u'*v and if we
             * can integrate u and u*v' */
            struct expression *intuvprime = integrate_and_free(simp_and_free(new_op(OP_MUL,
                                                                                    dup_expr(lint),
                                                                                    diff(expr->subexpr.right, var))),
                                                               var);
            if(lint && intuvprime)
            {
                return new_op(OP_SUB,
                              new_op(OP_MUL,
                                     lint,
                                     dup_expr(expr->subexpr.right)),
                              intuvprime);
            }
            free_expr(intuvprime);

            struct expression *intuprimev = integrate_and_free(simp_and_free(new_op(OP_MUL,
                                                                                    diff(expr->subexpr.left, var),
                                                                                    dup_expr(rint))),
                                                               var);
            if(rint && intuprimev)
            {
                return new_op(OP_SUB,
                              new_op(OP_MUL,
                                     dup_expr(expr->subexpr.left),
                                     rint),
                              intuprimev);
            }
            free_expr(intuprimev);
#endif
            free_expr(rint);
            free_expr(lint);

            return NULL;
        }
        case OP_POW:
            if(expr->subexpr.left->type == T_VAR && !strcmp(expr->subexpr.left->varname, var) && is_constant(expr->subexpr.right))
            {
                return new_op(OP_MUL,
                              new_op(OP_DIV,
                                     new_const(1),
                                     new_const(eval_numexpr(expr->subexpr.right) + 1)),
                              new_op(OP_POW,
                                     new_var(expr->subexpr.left->varname),
                                     new_const(eval_numexpr(expr->subexpr.right) + 1)));
            }
            /* fall through */
        default:
            return NULL;
        }
    case T_SPECFUNC:
    {
        switch(expr->specfunc.fn)
        {
        case FN_EXP:
            if(expr->specfunc.operand->type == T_VAR && !strcmp(expr->specfunc.operand->varname, var))
                return new_specfunc(FN_EXP, dup_expr(expr->specfunc.operand));
            /* fall through */
        default:
            break;
        }
        /* fall through */
    }
    default:
        return NULL;
    }
}

/* differentiate with respect to "var", returns entirely new object */
struct expression *diff(struct expression *expr, const char *var)
{
    switch(expr->type)
    {
    case T_CONST:
        return new_const(0);
    case T_VAR:
        if(!strcmp(var, expr->varname))
            return new_const(1);
        else
        {
            //if(is_constant(expr))
            //return new_const(0);
            if(is_var(expr->varname))
                return diff(eval_expr(expr), var);
            return new_op(OP_DIFF, dup_expr(expr), new_var(var));
        }
    case T_SUBEXPR:
        switch(expr->subexpr.op)
        {
        case OP_ADD:
        case OP_SUB:
            return simp_and_free(new_op(expr->subexpr.op, diff(expr->subexpr.left, var), diff(expr->subexpr.right, var)));
        case OP_MUL:
            /* f'g + fg' */
            return simp_and_free(new_op(OP_ADD,
                                        new_op(OP_MUL, diff(expr->subexpr.left, var), dup_expr(expr->subexpr.right)),
                                        new_op(OP_MUL, dup_expr(expr->subexpr.left), diff(expr->subexpr.right, var))));
        case OP_DIV:
            return simp_and_free(new_op(OP_DIV,
                                        new_op(OP_SUB,
                                               new_op(OP_MUL, diff(expr->subexpr.left, var), dup_expr(expr->subexpr.right)),
                                               new_op(OP_MUL, dup_expr(expr->subexpr.left), diff(expr->subexpr.right, var))),
                                        new_op(OP_POW, dup_expr(expr->subexpr.right), new_const(2))));
        case OP_POW:
            /* just n * f(x) ^ (n - 1) * f'(x) */
            if(is_constant(expr->subexpr.right))
            {
                return simp_and_free(new_op(OP_MUL,
                                            new_const(eval_numexpr(expr->subexpr.right)),
                                            new_op(OP_MUL,
                                                   new_op(OP_POW,
                                                          dup_expr(expr->subexpr.left),
                                                          new_op(OP_SUB,
                                                                 dup_expr(expr->subexpr.right),
                                                                 new_const(1))),
                                                   diff(expr->subexpr.left, var))));
            }
            else
            {
                /* f^(g-1) * (gf' + fg'ln(f)) */
                return simp_and_free(new_op(OP_MUL,
                                            new_op(OP_POW,
                                                   dup_expr(expr->subexpr.left),
                                                   new_op(OP_SUB,
                                                          dup_expr(expr->subexpr.right),
                                                          new_const(1))),
                                            new_op(OP_ADD,
                                                   new_op(OP_MUL,
                                                          dup_expr(expr->subexpr.right),
                                                          diff(expr->subexpr.left, var)),
                                                   new_op(OP_MUL,
                                                          dup_expr(expr->subexpr.left),
                                                          new_op(OP_MUL,
                                                                 diff(expr->subexpr.right, var),
                                                                 new_specfunc(FN_LOG, dup_expr(expr->subexpr.left)))))));
            }
        case OP_DIFF:
            return simp_and_free(new_op(OP_DIFF, dup_expr(expr), new_var(var)));
        case OP_INT:
            /* d/dx int f(x) dx = f(x) */
            if(expr->subexpr.right->type == T_VAR && !strcmp(expr->subexpr.right->varname, var))
                return simp(expr->subexpr.left);

            /* otherwise return nothing */
            return simp_and_free(new_op(OP_INT, dup_expr(expr), new_var(var)));
        case OP_ASSIGN:
            fail("cannot differentiate assignment operator (did you mean == ?)");
        case OP_EQUALS:
            return simp_and_free(new_op(OP_EQUALS, diff(expr->subexpr.left, var), diff(expr->subexpr.right, var)));
        default:
            fatal("fall through");
        }
    case T_SPECFUNC:
        switch(expr->specfunc.fn)
        {
        case FN_LOG:
            return simp_and_free(new_op(OP_DIV,
                                        diff(expr->specfunc.operand, var),
                                        dup_expr(expr->specfunc.operand)));
        case FN_EXP:
            return simp_and_free(new_op(OP_MUL,
                                        diff(expr->specfunc.operand, var),
                                        new_specfunc(FN_EXP, dup_expr(expr->specfunc.operand))));
        case FN_SIN:
            return simp_and_free(new_op(OP_MUL,
                          new_specfunc(FN_COS, dup_expr(expr->specfunc.operand)),
                                        diff(expr->specfunc.operand, var)));
        case FN_COS:
            return simp_and_free(new_op(OP_MUL,
                          new_const(-1),
                          new_op(OP_MUL,
                                 new_specfunc(FN_SIN, dup_expr(expr->specfunc.operand)),
                                 diff(expr->specfunc.operand, var))));
        case FN_TAN:
            return simp_and_free(new_op(OP_DIV,
                          diff(expr->specfunc.operand, var),
                          new_op(OP_POW,
                                 new_specfunc(FN_COS,
                                              dup_expr(expr->specfunc.operand)),
                                 new_const(2))));
        case FN_CSC:
            return simp_and_free(new_op(OP_MUL,
                          new_const(-1),
                          new_op(OP_MUL,
                                 diff(expr->specfunc.operand, var),
                                 new_op(OP_POW,
                                        new_op(OP_SUB,
                                               new_const(1),
                                               new_op(OP_POW,
                                                      dup_expr(expr->specfunc.operand),
                                                      new_const(2))),
                                        new_const(-.5)))));
        case FN_SEC:
            return simp_and_free(new_op(OP_MUL,
                          diff(expr->specfunc.operand, var),
                          new_op(OP_POW,
                                 new_op(OP_SUB,
                                        new_const(1),
                                        new_op(OP_POW,
                                               dup_expr(expr->specfunc.operand),
                                               new_const(2))),
                                 new_const(-.5))));
        case FN_COT:
            return simp_and_free(new_op(OP_MUL,
                          new_const(-1),
                          new_op(OP_MUL,
                                 diff(expr->specfunc.operand, var),
                                 new_op(OP_POW,
                                        new_specfunc(FN_CSC, dup_expr(expr->specfunc.operand)),
                                        new_const(2)))));
        case FN_ASIN:
            return simp_and_free(new_op(OP_MUL,
                          diff(expr->specfunc.operand, var),
                          new_op(OP_POW,
                                 new_op(OP_SUB,
                                        new_const(1),
                                        new_op(OP_POW,
                                        dup_expr(expr->specfunc.operand),
                                               new_const(2))),
                                 new_const(-.5))));
        case FN_ACOS:
            return simp_and_free(new_op(OP_MUL,
                          diff(expr->specfunc.operand, var),
                          new_op(OP_MUL,
                                 new_const(-1),
                                 new_op(OP_POW,
                                        new_op(OP_SUB,
                                               new_const(1),
                                               new_op(OP_POW,
                                                      dup_expr(expr->specfunc.operand),
                                                      new_const(2))),
                                        new_const(-.5)))));
        case FN_ATAN:
            return simp_and_free(new_op(OP_DIV,
                          diff(expr->specfunc.operand, var),
                          new_op(OP_ADD,
                                 new_const(1),
                                 new_op(OP_POW,
                                        dup_expr(expr->specfunc.operand),
                                        new_const(2)))));
        case FN_ACSC:
            return simp_and_free(new_op(OP_MUL,
                          new_const(-1),
                          new_op(OP_MUL,
                                 diff(expr->specfunc.operand, var),
                                 new_op(OP_DIV,
                                        new_op(OP_POW,
                                               new_op(OP_SUB,
                                                      new_op(OP_POW,
                                                             dup_expr(expr->specfunc.operand),
                                                             new_const(2)),
                                                      new_const(1)),
                                               new_const(-.5)),
                                        new_specfunc(FN_ABS, dup_expr(expr->specfunc.operand))))));
        case FN_ASEC:
            return simp_and_free(new_op(OP_MUL,
                          diff(expr->specfunc.operand, var),
                          new_op(OP_DIV,
                                 new_op(OP_POW,
                                        new_op(OP_SUB,
                                               new_op(OP_POW,
                                                      dup_expr(expr->specfunc.operand),
                                                      new_const(2)),
                                               new_const(1)),
                                        new_const(-.5)),
                                 new_specfunc(FN_ABS, dup_expr(expr->specfunc.operand)))));
        case FN_ACOT:
            return simp_and_free(new_op(OP_MUL,
                          new_const(-1),
                          new_op(OP_DIV,
                                 diff(expr->specfunc.operand, var),
                                 new_op(OP_ADD,
                                        new_const(1),
                                        new_op(OP_POW,
                                               dup_expr(expr->specfunc.operand),
                                               new_const(2))))));
        case FN_ABS:
            return simp_and_free(new_op(OP_MUL,
                          diff(expr->specfunc.operand, var),
                          new_op(OP_DIV,
                                 new_specfunc(FN_ABS, dup_expr(expr->specfunc.operand)),
                                 dup_expr(expr->specfunc.operand))));
        case FN_NEGATE:
            return simp_and_free(new_specfunc(FN_NEGATE, diff(expr->specfunc.operand, var)));
        case FN_SQRT:
            return simp_and_free(new_op(OP_DIV,
                          diff(expr->specfunc.operand, var),
                          new_op(OP_MUL,
                                 new_const(2),
                                 new_specfunc(FN_SQRT,
                                              dup_expr(expr->specfunc.operand)))));
        default:
            fatal("fall through");
        }
    default:
        fatal("fall through");
    }
}

const char *op2s(int op)
{
    return op_names[op];
}

const char *fn2s(int fn)
{
    return fn_names[fn];
}

int s2fn(const char *tok)
{
    for(int i = 0; i < FN_LAST; ++i)
        if(!strcmp(tok, fn_names[i]))
            return i;
    return -1;
}

int s2op(const char *tok)
{
    for(int i = 0; i < OP_LAST; ++i)
        if(!strcmp(tok, op_names[i]))
            return i;
    return -1;
}

void print_expr(struct expression *expr)
{
    switch(expr->type)
    {
    case T_CONST:
        printf("%.12g ", expr->constant);
        break;
    case T_VAR:
        printf("%s ", expr->varname);
        break;
    case T_SUBEXPR:
    {
        int prec = expr_prec(*expr);
        int lprec = expr_prec(*expr->subexpr.left);
        int rprec = expr_prec(*expr->subexpr.right);

        if(lprec <= prec)
            printf("( ");
        print_expr(expr->subexpr.left);
        if(lprec <= prec)
            printf(") ");

        printf("%s ", op2s(expr->subexpr.op));

        if(rprec <= prec)
            printf("( ");
        print_expr(expr->subexpr.right);
        if(rprec <= prec)
            printf(") ");
        break;
    }
    case T_SPECFUNC:
        if(expr->specfunc.fn != FN_NEGATE)
            printf("%s( ", fn2s(expr->specfunc.fn));
        else
            printf("-");

        print_expr(expr->specfunc.operand);

        if(expr->specfunc.fn != FN_NEGATE)
            printf(") ");
        break;
    default:
        fatal("fall through");
    }
}

#define PARSER_STACK 32

#define PUSH(stack, sp, rvalue) (stack)[(sp)++] = (rvalue)
#define POP(stack, sp) ((stack)[--(sp)])

struct expression *stack_pop(struct expression **stack, int *sp)
{
    if(!*sp)
        return NULL;
    return stack[--(*sp)];
}

bool stack_push(struct expression **stack, int *sp, struct expression *value)
{
    if(*sp >= PARSER_STACK)
        return false;
    stack[(*sp)++] = value;
    return true;
}

void free_stack(struct expression **stack, int n)
{
    for(int i = 0; i < n; ++i)
        free_expr(stack[n]);
    free(stack);
}

void free_stacks(struct expression **opstack, int osp, struct expression **numstack, int nsp)
{
    free_stack(opstack, osp);
    free_stack(numstack, nsp);
}

bool is_num(const char *str)
{
    bool had_digit = false;

    if(*str == '-')
        ++str;

    while(*str)
    {
        if(!(isdigit(*str) || *str == '.'))
            return false;
        if(isdigit(*str))
            had_digit = true;
        str++;
    }
    return had_digit;
}

bool execop(struct expression **numstack, int *nsp, struct expression **opstack, int *osp)
{
    struct expression *prevop = stack_pop(opstack, osp);
    if(!prevop)
        goto fail;

    switch(prevop->type)
    {
    case T_SUBEXPR:
    {
        struct expression *r = stack_pop(numstack, nsp);
        if(!r)
            goto fail;

        struct expression *l = stack_pop(numstack, nsp);
        if(!l)
            goto fail;

        prevop->subexpr.left = l;
        prevop->subexpr.right = r;

        /* must succeed */
        stack_push(numstack, nsp, prevop);
        break;
    }
    case T_SPECFUNC:
    {
        struct expression *operand = stack_pop(numstack, nsp);
        if(!operand)
            goto fail;
        prevop->specfunc.operand = operand;
        stack_push(numstack, nsp, prevop);
        break;
    }
    default:
        fatal("fall through");
    }
    return true;
fail:
    free_expr(prevop);
    free_stacks(opstack, *osp, numstack, *nsp);
    return false;
}

struct expression *parse_expr(const char *infix)
{
    /* strtok modifies */
    char *str = strdup(infix);

    struct expression **numstack = calloc(PARSER_STACK, sizeof(struct expression*));
    int nsp = 0;

    struct expression **opstack = calloc(PARSER_STACK, sizeof(struct expression*));
    int osp = 0;

    char *tok, *p = str;
    do {
        /* tokenize */
        tok = strtok(p, " ");
        p = NULL;

        if(!tok)
            break;
        if(is_num(tok))
        {
            /* number */
            struct expression *n = new_const(atof(tok));
            if(!stack_push(numstack, &nsp, n))
            {
                free_stacks(opstack, osp, numstack, nsp);
                free_expr(n);
                free(str);
                return NULL;
            }
        }
        /* must come before operators, since unary minus is implemented as a function */
        else if(s2fn(tok) >= 0 && (s2fn(tok) != FN_NEGATE || (s2fn(tok) == FN_NEGATE && nsp == 0)))
        {
            struct expression *n = new_specfunc(s2fn(tok), NULL);
            if(!stack_push(opstack, &osp, n))
            {
                free_stacks(opstack, osp, numstack, nsp);
                free_expr(n);
                free(str);
                return NULL;
            }
        }
        else if(s2op(tok) >= 0)
        {
            struct expression *op = new_op(s2op(tok), NULL, NULL);
            while(osp > 0 && (opstack[osp-1]->type == T_SPECFUNC ||
                              (expr_prec(*opstack[osp-1]) > expr_prec(*op)) ||
                              (expr_prec(*opstack[osp-1]) == expr_prec(*op) && op_assoc[(int)opstack[osp-1]->subexpr.op] == LEFT)))
            {
                if(!execop(numstack, &nsp, opstack, &osp))
                {
                    free_expr(op);
                    free(str);
                    return NULL;
                }
            }

            if(!stack_push(opstack, &osp, op))
            {
                free_stacks(opstack, osp, numstack, nsp);
                free_expr(op);
                free(str);
                return NULL;
            }
        }
        else if(!strcmp(tok, "("))
        {
            struct expression *op = new_op(OP_LPAREN, NULL, NULL);
            if(!stack_push(opstack, &osp, op))
            {
                free_stacks(opstack, osp, numstack, nsp);
                free_expr(op);
                free(str);
                return NULL;
            }
        }
        else if(!strcmp(tok, ")"))
        {
            while(osp > 0 && opstack[osp - 1]->subexpr.op != OP_LPAREN)
            {
               if(!execop(numstack, &nsp, opstack, &osp))
               {
                   free(str);
                   return NULL;
               }
            }
            free_expr(stack_pop(opstack, &osp));
        }
        else
        {
            /* variable name */
            struct expression *var = new_var(tok);
            if(!stack_push(numstack, &nsp, var))
            {
                free_stacks(opstack, osp, numstack, nsp);
                free_expr(var);
                free(str);
                return NULL;
            }
        }
    } while(tok);

    while(osp > 0)
    {
        if(!execop(numstack, &nsp, opstack, &osp))
        {
            free(str);
            return NULL;
        }
    }

    free(str);

    struct expression *ret = numstack[0];

    /* guaranteed to be empty */
    free(opstack);

    if(nsp != 1)
    {
        /* we free the memory for the stack, as well as the elements,
         * since we don't care about them */
        free_stack(numstack, nsp);
        return NULL;
    }
    else
    {
        /* only free the stack memory, leaving the element untouched */
        free(numstack);
        return ret;
    }
}

int main(int argc, char *argv[])
{
    interactive = isatty(STDIN_FILENO);

    if(interactive)
    {
        printf("Welcome to yaCAS!\n\nCopyright (C) 2018 Franklin Wei\n\nType \"help\" for a quick overview of the supported features.\n*** Remember to separate tokens with spaces ***\n\n");
    }

    atexit(freevars);

    setvar("pi", new_const(M_PI), true);
    setvar("e", new_const(M_E), true);
    setvar("memdiag", new_const(0), false);
    setvar(".", new_const(0), false);

    while(1)
    {
        if(setjmp(restore) == 0)
        {
            peakmem = 0;

            char *line = NULL;
#ifndef USE_READLINE
            if(interactive)
                printf("yaCAS> ");
            fflush(stdout);

            size_t n = 0;
            ssize_t len = getline(&line, &n, stdin);

            /* remove newline */
            if(line[len - 1] == '\n')
                line[len-- - 1] = '\0';

            if(len < 0)
                return 0;
#else
            line = readline(interactive ? "yaCAS> " : "");
            if(line && *line)
                add_history(line);
#endif

            if(!line)
                return 0;

            if(!strcmp(line, "dump"))
            {
                dumpvars();
                free(line);
                continue;
            }
            else if(!strcmp(line, "help"))
            {
                printf("yaCAS requires a space between all tokens, so instead of \"x^2\", type \"x ^ 2\"\n");
                printf("Some features in action:\n");

                printf("Calculation:\n    > atan ( 1 ) / pi\n");
                printf("Differentiation:\n    > x ^ 2 diff ( x = 2 ) -- differentiate x^2 at x=2\n    > log ( y ) * x diff x -- implicit differentiation\n    > exp ( x ^ 2 ) diff x diff ( x = 0 ) -- evaluate higher-order derivative\n");
                printf("Integration (rudimentary):\n    > 5 * x ^ 3 int x\n");
                printf("Special functions:\n    > exp ( pi ) - pi\n");
                printf("Variables:\n    > y = x ^ 2 -- variables can contain other expressions\n    > y diff x -- differentiate x^2 with respect to x\n    > x = 2\n    > y\n");
                printf("Equality testing (rudimentary):\n    > x + 2 == 2 + x\n");
                free(line);
                continue;
            }

            clock_t start = clock();

            struct expression *top = parse_expr(line);
            free(line);

            if(top)
            {
                top = eval_and_free(top);
                top = simp_and_free_max(top);
                print_expr(top);

                printf("(%s)\n", type_names[(int)top->type]);

                setvar(".", dup_expr(top), true);

                free_expr(top);
            }
            else
            {
                printf("malformed expression\n");
            }

            clock_t diff = clock() - start;
            if(diff > CLOCKS_PER_SEC / 10)
                printf("time: %ld.%.03ld sec\n", diff / CLOCKS_PER_SEC, diff % CLOCKS_PER_SEC / (CLOCKS_PER_SEC / 1000));

            if(eval_numexpr_and_free(new_var("memdiag")) == 2)
            {
                printf("memory: %d peak: %d\n", memusage, peakmem);
            }
        }
    }
}