1 #ifndef STAN_INTERFACE_CALLBACKS_WRITER_NOOP_WRITER_HPP
2 #define STAN_INTERFACE_CALLBACKS_WRITER_NOOP_WRITER_HPP
9 namespace interface_callbacks {
22 void operator()(
const std::string& key,
const std::string& value) {}
28 int n_rows,
int n_cols) {}
29 void operator()(
const std::vector<std::string>& names) {}
Probability, optimization and sampling library.
void operator()(const std::string &key, const std::string &value)
Writes a key, value pair.
void operator()(const std::vector< std::string > &names)
Writes a set of names.
void operator()(const std::string &key, double value)
Writes a key, value pair.
void operator()()
Writes blank input.
base_writer is an abstract base class defining the interface for Stan writer callbacks.
void operator()(const std::string &key, const double *values, int n_rows, int n_cols)
Writes a key, value pair.
void operator()(const std::vector< double > &state)
Writes a set of values.
void operator()(const std::string &key, const double *values, int n_values)
Writes a key, value pair.
void operator()(const std::string &message)
Writes a string.
void operator()(const std::string &key, int value)
Writes a key, value pair.