Skip to content
Snippets Groups Projects
Commit c7e5b448 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

parallel: SingleCompThread bug fix

parent 7a26fe2e
No related branches found
No related tags found
No related merge requests found
......@@ -221,9 +221,9 @@ ConfigFile::getConfigFileInfo(const string &parallel_config_file)
else if (!tokenizedLine.front().compare("MatlabOctavePath"))
matlabOctavePath = tokenizedLine.back();
else if (!tokenizedLine.front().compare("SingleCompThread"))
if (tokenizedLine.back().compare("true"))
if (tokenizedLine.back().compare("true") == 0)
singleCompThread = true;
else if (tokenizedLine.back().compare("false"))
else if (tokenizedLine.back().compare("false") == 0)
singleCompThread = false;
else
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment