Some names slightly changed to better describe their purpose.
ChipSeed --> ErrorChipSeed csvfile --> ErrorCSVFile StorMo --> ErrorStoreMode StorMode --> ErrorStoreMode StorageMode --> ErrorStorageMode (Changes after code review)
This commit is contained in:
@@ -92,13 +92,13 @@ void Configuration::setParameter(std::string name, std::string value)
|
||||
PowerAnalysis = string2bool(value);
|
||||
else if(name == "Debug")
|
||||
Debug = string2bool(value);
|
||||
//Specification for Chipseed, csvfile path and StorageMode
|
||||
else if(name == "Chipseed")
|
||||
Chipseed = string2int(value);
|
||||
else if(name == "csvfile")
|
||||
csvfile = value;
|
||||
else if(name == "StorMo")
|
||||
StorMode = StringToEnum(value);
|
||||
// Specification for ErrorChipSeed, ErrorCSVFile path and ErrorStoreMode
|
||||
else if(name == "ErrorChipSeed")
|
||||
ErrorChipSeed = string2int(value);
|
||||
else if(name == "ErrorCSVFile")
|
||||
ErrorCSVFile = value;
|
||||
else if(name == "ErrorStoreMode")
|
||||
ErrorStoreMode = StringToEnum(value);
|
||||
else
|
||||
{
|
||||
SC_REPORT_FATAL("Configuration", ("Parameter " + name + " not defined in Configuration").c_str());
|
||||
|
||||
Reference in New Issue
Block a user