TestOption< N > Class Template Reference

A static object whose constructor registers a parameter with the IO class. More...

Public Member Functions

 TestOption (const N defaultValue, const std::string &identifier, const std::string &description, const std::string &alias, const std::string &cppName, const bool required=false, const bool input=true, const bool noTranspose=false, const std::string &bindingName="")
 Construct an Option object. More...

 

Detailed Description


template
<
typename
N
>

class mlpack::bindings::tests::TestOption< N >

A static object whose constructor registers a parameter with the IO class.

This should not be used outside of IO itself, and you should use the PARAM_FLAG(), PARAM_DOUBLE(), PARAM_INT(), PARAM_STRING(), or other similar macros to declare these objects instead of declaring them directly.

See also
core/util/io.hpp, mlpack::IO

Definition at line 41 of file test_option.hpp.

Constructor & Destructor Documentation

◆ TestOption()

TestOption ( const N  defaultValue,
const std::string &  identifier,
const std::string &  description,
const std::string &  alias,
const std::string &  cppName,
const bool  required = false,
const bool  input = true,
const bool  noTranspose = false,
const std::string &  bindingName = "" 
)
inline

Construct an Option object.

When constructed, it will register itself with IO.

Parameters
defaultValueDefault value this parameter will be initialized to (for flags, this should be false, for instance).
identifierThe name of the option (no dashes in front; for –help, we would pass "help").
descriptionA short string describing the option.
aliasShort name of the parameter. "" for no alias.
cppNameName of the C++ type of this parameter (i.e. "int").
requiredWhether or not the option is required at runtime.
inputWhether or not the option is an input option.
noTransposeIf the parameter is a matrix and this is true, then the matrix will not be transposed on loading.
testNameName of the test (used for identifiying which binding test this option belongs to)

Definition at line 62 of file test_option.hpp.

References IO::AddParameter(), ParamData::alias, ParamData::cppType, ParamData::desc, ParamData::input, ParamData::loaded, ParamData::name, ParamData::noTranspose, TestFunctionMap::RegisterFunction(), ParamData::required, ParamData::tname, TYPENAME, ParamData::value, and ParamData::wasPassed.


The documentation for this class was generated from the following file:
  • /home/ryan/src/mlpack.org/_src/mlpack-git/src/mlpack/bindings/tests/test_option.hpp