Go to the source code of this file.
|
| template<typename T > |
| bool | IgnoreCheck (const T &) |
| | Return whether or not a runtime check on parameters should be ignored. More...
|
| |
| std::string | ParamString (const std::string ¶mName) |
| | Print what a user would type to invoke the given option name. More...
|
| |
| std::string | PrintDataset (const std::string &dataset) |
| | Print a dataset type parameter (add .csv and return). More...
|
| |
| std::string | PrintModel (const std::string &model) |
| | Print a model type parameter (add .bin and return). More...
|
| |
| template<typename T > |
| std::string | PrintValue (const T &value, bool quotes) |
| | Given a parameter type, print the corresponding value. More...
|
| |
| std::string | ProcessOptions () |
| | Base case for recursion. More...
|
| |
| template<typename T , typename... Args> |
| std::string | ProcessOptions (const std::string ¶mName, const T &value, Args...args) |
| | Print an option for a command-line argument. More...
|
| |
| template<typename... Args> |
| std::string | ProgramCall (const std::string &programName, Args...args) |
| | Given a program name and arguments for it, print what its invocation would be. More...
|
| |