Begin adding cfs to BoostAODE

This commit is contained in:
2023-10-10 11:52:39 +02:00
parent 7d8aca4f59
commit f288bbd6fa
13 changed files with 59 additions and 28 deletions

View File

@@ -212,14 +212,4 @@ namespace platform {
}
return Xd;
}
vector<string> Dataset::split(const string& text, char delimiter)
{
vector<string> result;
stringstream ss(text);
string token;
while (getline(ss, token, delimiter)) {
result.push_back(token);
}
return result;
}
}