-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEquation.cpp
51 lines (41 loc) · 1.09 KB
/
Equation.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
#include "Equation.h"
Equation::Equation(QStringView eqn)
{
int termStart = 0;
int termEnd = 0;
int currTerm = 1;
try {
for(int i = 0; i < eqn.length(); i++) {
if(eqn[i] == '=') {
termEnd = i;
this->terms.push_back(eqn.sliced(termStart, termEnd - termStart));
termStart = i + 1;
currTerm++;
}
}
// Last term
terms.push_back(eqn.sliced(termStart, eqn.length() - termStart));
}
catch (const char* err)
{
throw "term " + std::to_string(currTerm) + " " + err;
}
}
//QString Equation::getSymbol()
//{
// QString symbolString = "";
// for(int i = 0; i < this->terms.size(); i++)
// {
// symbolString += terms.at(i).getSymbol() + ( i == terms.size() - 1 ? "" : "=" );
// }
// return symbolString;
//}
QString Equation::getCompressedDebug()
{
QString compressedDebug = "";
for(int i = 0; i < this->terms.size(); i++)
{
compressedDebug += this->terms.at(i).getCompressedDebug();
}
return compressedDebug;
}