16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-18 00:49:19 +02:00

Remove not used DUE and DWE

This commit is contained in:
docentYT
2026-05-01 00:28:35 +02:00
parent ee3af0bf18
commit 2faf3293b1
2 changed files with 0 additions and 18 deletions

View File

@@ -154,22 +154,6 @@ bool FuzzyLogicAI(double Test, double Threshold, double Probability)
return false;
}
std::string DUE(std::string s) /*Delete Before Equal sign*/
{
// DUE = Copy(s, Pos("=", s) + 1, length(s));
return s.substr(s.find("=") + 1, s.length());
}
std::string DWE(std::string s) /*Delete After Equal sign*/
{
size_t ep = s.find("=");
if (ep != std::string::npos)
// DWE = Copy(s, 1, ep - 1);
return s.substr(0, ep);
else
return s;
}
std::string ExchangeCharInString(std::string const &Source, char const From, char const To)
{
std::string replacement;