13 #ifndef MLPACK_BINDINGS_TESTS_GET_PRINTABLE_PARAM_HPP
14 #define MLPACK_BINDINGS_TESTS_GET_PRINTABLE_PARAM_HPP
30 const typename boost::disable_if<arma::is_arma_type<T>>::type* = 0,
33 const typename boost::disable_if<std::is_same<T,
34 std::tuple<data::DatasetInfo, arma::mat>>>::type* = 0);
50 const typename boost::enable_if<arma::is_arma_type<T>>::type* = 0);
58 const typename boost::disable_if<arma::is_arma_type<T>>::type* = 0,
67 const typename boost::enable_if<std::is_same<T,
68 std::tuple<data::DatasetInfo, arma::mat>>>::type* = 0);
80 *((std::string*) output) =
81 GetPrintableParam<typename std::remove_pointer<T>::type>(data);
89 #include "get_printable_param_impl.hpp"