-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_calculator.cpp
98 lines (73 loc) · 2.96 KB
/
test_calculator.cpp
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
#include <iostream>
#include <functional>
#include <algorithm>
#include <cstring>
#include "parser.h"
const QuaternionOrOctonion pi(3.141592653589793, 0.0);
const QuaternionOrOctonion e(2.718281828459045, 0.0);
const QuaternionOrOctonion phi(1.618033988749895, 0.0);
int main() {
QuaternionOrOctonion z, c;
z = QuaternionOrOctonion(0.5, 1.5);
c = QuaternionOrOctonion(1.0, -1.0, 3.0, 2.0);
VariableEntry varEntries[5] = {
{"z", &z},
{"c", &c},
{"phi", const_cast<QuaternionOrOctonion*>(&phi)},
{"pi", const_cast<QuaternionOrOctonion*>(&pi)},
{"e", const_cast<QuaternionOrOctonion*>(&e)},
};
const size_t numVars = sizeof(varEntries) / sizeof(VariableEntry);
double myArray[] = {1.0, 2.0, 3.0, 4.0, 5.0};
ArrayEntry arrEntries[1] = {
{"array", myArray, 5}
};
const size_t numArrays = sizeof(arrEntries) / sizeof(ArrayEntry);
while (true) {
char expression[512] = {};
std::cout << "\nEnter expression (or type 'exit' to quit):\n";
std::cin.getline(expression, sizeof(expression));
size_t len = std::strlen(expression);
size_t j = 0;
for (size_t i = 0; i < len; i++) {
if (expression[i] != ' ') {
expression[j++] = expression[i];
}
}
expression[j] = '\0';
if (std::strcmp(expression, "exit") == 0) {
break;
}
char exprBody[510] = {};
if (j > 2) {
std::memcpy(exprBody, expression + 2, j - 2);
exprBody[j - 2] = '\0';
}
try {
size_t exprSize = std::strlen(expression);
if (std::strncmp(expression, "z=", 2) == 0) {
Parser parser(exprBody, exprSize, varEntries, numVars, arrEntries, numArrays);
ASTNode* ast = parser.parse();
z = ast->evaluate();
std::cout << "\nValue assigned to z: " << z << "\n";
continue;
}
if (std::strncmp(expression, "c=", 2) == 0) {
Parser parser(exprBody, exprSize, varEntries, numVars, arrEntries, numArrays);
ASTNode* ast = parser.parse();
c = ast->evaluate();
std::cout << "\nValue assigned to c: " << c << "\n";
continue;
}
Parser parser(expression, exprSize, varEntries, numVars, arrEntries, numArrays);
ASTNode* ast = parser.parse();
QuaternionOrOctonion result = ast->evaluate();
std::cout << "\nResult: " << result << "\n";
}
catch (const std::exception& ex) {
std::cerr << "\nError: " << ex.what() << "\n";
}
}
return 0;
}
// g++ -O3 -Wall -Wextra -pedantic -march=native -fPIC -funroll-loops -fopenmp -DOCTO -o test_calculator test_calculator.cpp