|
| std::string | GetBindingName (const std::string &bindingName) |
| | Given the name of a binding, print its Python name. More...
|
| |
| bool | IgnoreCheck (const std::string ¶mName) |
| | Print whether or not we should ignore a check on the given parameter. More...
|
| |
| bool | IgnoreCheck (const std::vector< std::string > &constraints) |
| | Print whether or not we should ignore a check on the given set of constraints. More...
|
| |
| bool | IgnoreCheck (const std::vector< std::pair< std::string, bool >> &constraints, const std::string ¶mName) |
| | Print whether or not we should ignore a check on the given set of constraints. More...
|
| |
| std::string | ParamString (const std::string ¶mName) |
| | Given the parameter name, determine what it would actually be when passed to the command line. More...
|
| |
| std::string | PrintDataset (const std::string &datasetName) |
| | Given the name of a matrix, print it. More...
|
| |
| std::string | PrintDefault (const std::string ¶mName) |
| | Given a parameter name, print its corresponding default value. More...
|
| |
| std::string | PrintImport (const std::string &bindingName) |
| | Print any import information for the Python binding. More...
|
| |
| std::string | PrintInputOptions () |
| |
| template<typename T , typename... Args> |
| std::string | PrintInputOptions (const std::string ¶mName, const T &value, Args...args) |
| | Print an input option. More...
|
| |
| std::string | PrintModel (const std::string &modelName) |
| | Given the name of a model, print it. More...
|
| |
| std::string | PrintOutputOptionInfo () |
| | Print any special information about output options. More...
|
| |
| std::string | PrintOutputOptions () |
| |
| template<typename T , typename... Args> |
| std::string | PrintOutputOptions (const std::string ¶mName, const T &value, Args...args) |
| |
| template<typename T > |
| std::string | PrintValue (const T &value, bool quotes) |
| | Given a parameter type, print the corresponding value. More...
|
| |
| template<> |
| std::string | PrintValue (const bool &value, bool quotes) |
| |
| template<typename... Args> |
| std::string | ProgramCall (const std::string &programName, Args...args) |
| | Given a name of a binding and a variable number of arguments (and their contents), print the corresponding function call. More...
|
| |
| std::string | ProgramCall (const std::string &programName) |
| | Given the name of a binding, print a program call assuming that all options are specified. More...
|
| |