- removed old parallelization parameters from the old-style from eoParser class
This commit is contained in:
parent
b7379050bc
commit
85fdbe6aba
2 changed files with 0 additions and 15 deletions
|
|
@ -61,10 +61,6 @@ eoParameterLoader::~eoParameterLoader()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//multithreading
|
|
||||||
eoValueParam<bool> eo::parallelizeLoopParam = eoValueParam<bool>(false, "parallelize-loop", "Enable memory shared parallelization into evaluation's loops", '\0');
|
|
||||||
//multithreading ends
|
|
||||||
|
|
||||||
eoParser::eoParser ( unsigned _argc, char **_argv , string _programDescription,
|
eoParser::eoParser ( unsigned _argc, char **_argv , string _programDescription,
|
||||||
string _lFileParamName, char _shortHand) :
|
string _lFileParamName, char _shortHand) :
|
||||||
programName(_argv[0]),
|
programName(_argv[0]),
|
||||||
|
|
@ -102,10 +98,6 @@ eoParser::eoParser ( unsigned _argc, char **_argv , string _programDescription,
|
||||||
readFrom(stream);
|
readFrom(stream);
|
||||||
processParam(needHelp);
|
processParam(needHelp);
|
||||||
processParam(stopOnUnknownParam);
|
processParam(stopOnUnknownParam);
|
||||||
|
|
||||||
//multithreading
|
|
||||||
processParam(eo::parallelizeLoopParam);
|
|
||||||
//multithreading ends
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -93,13 +93,6 @@ private :
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
//multithreading
|
|
||||||
namespace eo
|
|
||||||
{
|
|
||||||
extern eoValueParam<bool> parallelizeLoopParam;
|
|
||||||
}
|
|
||||||
//multithreading ends
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
eoParser: command line parser and configuration file reader
|
eoParser: command line parser and configuration file reader
|
||||||
This class is persistent, so it can be stored and reloaded to restore
|
This class is persistent, so it can be stored and reloaded to restore
|
||||||
|
|
|
||||||
Reference in a new issue