Stan  2.10.0
probability, sampling & optimization
arg_data_file.hpp
Go to the documentation of this file.
1 #ifndef STAN_SERVICES_ARGUMENTS_ARG_DATA_FILE_HPP
2 #define STAN_SERVICES_ARGUMENTS_ARG_DATA_FILE_HPP
3 
5 
6 namespace stan {
7  namespace services {
8 
9  class arg_data_file: public string_argument {
10  public:
12  _name = "file";
13  _description = "Input data file";
14  _validity = "Path to existing file";
15  _default = "\"\"";
16  _default_value = "";
17  _constrained = false;
18  _good_value = "good";
20  }
21  };
22 
23  } // services
24 } // stan
25 
26 #endif
Probability, optimization and sampling library.
std::string _description
Definition: argument.hpp:84

     [ Stan Home Page ] © 2011–2016, Stan Development Team.