<p>I'll leave this pull request open for a week, for the sake of discussion, since it's a major change</p>

<p>In the past, the great idea was come upon that a <code>ToString()</code> method should be implemented in every class, then some glue logic could allow <code>operator&lt;&lt;()</code> for any arbitrary mlpack object.  This was done with template metaprogramming (see <code>sfinae_utility.hpp</code> by Trironk, it is quite cool) and worked fine.</p>

<p>However, as time has gone on, it's unclear to me whether or not this feature is actually useful, and personally I am of the opinion that it should be removed, so I made a few commits removing all the <code>ToString()</code> functions and related functionality and made this pull request.  Here are my arguments for why it isn't very useful:</p>

<ul>
<li><p>It's not always clear how much should be printed in a <code>ToString()</code> call.  Should we print all of a binary space tree?  Only the first few levels?  How much information does the user want?  In many cases, the amount of information that <em>could</em> be printed is huge, so when a user sends an object to an ostream, they get reams and reams of output.</p></li>
<li><p>It's extra overhead for new contributors and also for maintenance, if their classes also have to have a <code>ToString()</code> method.  And usually when these are written, it seems like simple copypasta and not much thought is given into precisely what to display (see the previous point).</p></li>
<li><p>It's not actually all that useful for debugging; often when debugging, I find myself ignoring the <code>ToString()</code> function and instead only printing the member of the object that I am interested in.</p></li>
</ul>

<p>So, those are the primary reasons I think that we should remove---or at least rethink---the <code>ToString()</code> functionality.  Like I said, I'll leave this open for a week for discussion, then merge in the change.  So if you disagree with anything I've written here, or you find the <code>ToString()</code> functions particularly useful, feel free to comment!  My perspective is not the only perspective. :)</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/mlpack/mlpack/pull/487'>https://github.com/mlpack/mlpack/pull/487</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Remove ToString() from everything.</li>
  <li>Update HISTORY.md.</li>
  <li>Remove special handling for ToString().</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-0">HISTORY.md</a>
    (2)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-1">src/mlpack/core.hpp</a>
    (1)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-2">src/mlpack/core/dists/discrete_distribution.cpp</a>
    (18)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-3">src/mlpack/core/dists/discrete_distribution.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-4">src/mlpack/core/dists/gaussian_distribution.cpp</a>
    (17)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-5">src/mlpack/core/dists/gaussian_distribution.hpp</a>
    (6)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-6">src/mlpack/core/dists/laplace_distribution.cpp</a>
    (14)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-7">src/mlpack/core/dists/laplace_distribution.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-8">src/mlpack/core/dists/regression_distribution.cpp</a>
    (18)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-9">src/mlpack/core/dists/regression_distribution.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-10">src/mlpack/core/kernels/cosine_distance.hpp</a>
    (10)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-11">src/mlpack/core/kernels/epanechnikov_kernel.cpp</a>
    (11)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-12">src/mlpack/core/kernels/epanechnikov_kernel.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-13">src/mlpack/core/kernels/example_kernel.hpp</a>
    (12)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-14">src/mlpack/core/kernels/gaussian_kernel.hpp</a>
    (9)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-15">src/mlpack/core/kernels/hyperbolic_tangent_kernel.hpp</a>
    (10)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-16">src/mlpack/core/kernels/laplacian_kernel.hpp</a>
    (9)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-17">src/mlpack/core/kernels/linear_kernel.hpp</a>
    (8)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-18">src/mlpack/core/kernels/polynomial_kernel.hpp</a>
    (10)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-19">src/mlpack/core/kernels/pspectrum_string_kernel.hpp</a>
    (14)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-20">src/mlpack/core/kernels/spherical_kernel.hpp</a>
    (9)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-21">src/mlpack/core/kernels/triangular_kernel.hpp</a>
    (9)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-22">src/mlpack/core/math/range.hpp</a>
    (6)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-23">src/mlpack/core/math/range_impl.hpp</a>
    (9)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-24">src/mlpack/core/metrics/ip_metric.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-25">src/mlpack/core/metrics/ip_metric_impl.hpp</a>
    (11)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-26">src/mlpack/core/metrics/lmetric.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-27">src/mlpack/core/metrics/lmetric_impl.hpp</a>
    (11)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-28">src/mlpack/core/metrics/mahalanobis_distance.hpp</a>
    (2)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-29">src/mlpack/core/metrics/mahalanobis_distance_impl.hpp</a>
    (24)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-30">src/mlpack/core/optimizers/aug_lagrangian/aug_lagrangian.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-31">src/mlpack/core/optimizers/aug_lagrangian/aug_lagrangian_function.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-32">src/mlpack/core/optimizers/aug_lagrangian/aug_lagrangian_function_impl.hpp</a>
    (12)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-33">src/mlpack/core/optimizers/aug_lagrangian/aug_lagrangian_impl.hpp</a>
    (13)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-34">src/mlpack/core/optimizers/aug_lagrangian/aug_lagrangian_test_functions.cpp</a>
    (8)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-35">src/mlpack/core/optimizers/aug_lagrangian/aug_lagrangian_test_functions.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-36">src/mlpack/core/optimizers/lbfgs/lbfgs.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-37">src/mlpack/core/optimizers/lbfgs/lbfgs_impl.hpp</a>
    (20)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-38">src/mlpack/core/optimizers/sa/sa.hpp</a>
    (2)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-39">src/mlpack/core/optimizers/sa/sa_impl.hpp</a>
    (24)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-40">src/mlpack/core/optimizers/sdp/lrsdp.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-41">src/mlpack/core/optimizers/sdp/lrsdp_function.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-42">src/mlpack/core/optimizers/sdp/lrsdp_function_impl.hpp</a>
    (14)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-43">src/mlpack/core/optimizers/sdp/lrsdp_impl.hpp</a>
    (10)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-44">src/mlpack/core/optimizers/sgd/sgd.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-45">src/mlpack/core/optimizers/sgd/sgd_impl.hpp</a>
    (15)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-46">src/mlpack/core/tree/ballbound.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-47">src/mlpack/core/tree/ballbound_impl.hpp</a>
    (15)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-48">src/mlpack/core/tree/binary_space_tree/binary_space_tree.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-49">src/mlpack/core/tree/binary_space_tree/binary_space_tree_impl.hpp</a>
    (36)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-50">src/mlpack/core/tree/cover_tree/cover_tree.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-51">src/mlpack/core/tree/cover_tree/cover_tree_impl.hpp</a>
    (35)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-52">src/mlpack/core/tree/hrectbound.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-53">src/mlpack/core/tree/hrectbound_impl.hpp</a>
    (20)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-54">src/mlpack/core/tree/rectangle_tree/rectangle_tree.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-55">src/mlpack/core/tree/rectangle_tree/rectangle_tree_impl.hpp</a>
    (35)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-56">src/mlpack/core/tree/statistic.hpp</a>
    (10)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-57">src/mlpack/core/util/CMakeLists.txt</a>
    (1)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-58">src/mlpack/core/util/ostream_extra.hpp</a>
    (37)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-59">src/mlpack/core/util/prefixedoutstream.hpp</a>
    (30)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-60">src/mlpack/core/util/prefixedoutstream_impl.hpp</a>
    (39)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-61">src/mlpack/methods/cf/cf.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-62">src/mlpack/methods/cf/cf_impl.hpp</a>
    (13)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-63">src/mlpack/methods/det/dtree.cpp</a>
    (16)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-64">src/mlpack/methods/det/dtree.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-65">src/mlpack/methods/emst/dtb.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-66">src/mlpack/methods/emst/dtb_impl.hpp</a>
    (20)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-67">src/mlpack/methods/fastmks/fastmks.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-68">src/mlpack/methods/fastmks/fastmks_impl.hpp</a>
    (18)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-69">src/mlpack/methods/gmm/gmm.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-70">src/mlpack/methods/gmm/gmm_impl.hpp</a>
    (29)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-71">src/mlpack/methods/hmm/hmm.hpp</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-72">src/mlpack/methods/hmm/hmm_impl.hpp</a>
    (12)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-73">src/mlpack/methods/kernel_pca/kernel_pca.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-74">src/mlpack/methods/kernel_pca/kernel_pca_impl.hpp</a>
    (13)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-75">src/mlpack/methods/kmeans/dual_tree_kmeans_statistic.hpp</a>
    (12)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-76">src/mlpack/methods/kmeans/kmeans.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-77">src/mlpack/methods/kmeans/kmeans_impl.hpp</a>
    (20)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-78">src/mlpack/methods/kmeans/pelleg_moore_kmeans_statistic.hpp</a>
    (10)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-79">src/mlpack/methods/lars/lars.cpp</a>
    (11)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-80">src/mlpack/methods/lars/lars.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-81">src/mlpack/methods/linear_regression/linear_regression.cpp</a>
    (8)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-82">src/mlpack/methods/linear_regression/linear_regression.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-83">src/mlpack/methods/local_coordinate_coding/lcc.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-84">src/mlpack/methods/local_coordinate_coding/lcc_impl.hpp</a>
    (10)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-85">src/mlpack/methods/logistic_regression/logistic_regression.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-86">src/mlpack/methods/logistic_regression/logistic_regression_impl.hpp</a>
    (10)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-87">src/mlpack/methods/lsh/lsh_search.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-88">src/mlpack/methods/lsh/lsh_search_impl.hpp</a>
    (13)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-89">src/mlpack/methods/nca/nca.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-90">src/mlpack/methods/nca/nca_impl.hpp</a>
    (13)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-91">src/mlpack/methods/nca/nca_softmax_error_function.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-92">src/mlpack/methods/nca/nca_softmax_error_function_impl.hpp</a>
    (12)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-93">src/mlpack/methods/neighbor_search/neighbor_search.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-94">src/mlpack/methods/neighbor_search/neighbor_search_impl.hpp</a>
    (24)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-95">src/mlpack/methods/pca/pca.cpp</a>
    (10)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-96">src/mlpack/methods/pca/pca.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-97">src/mlpack/methods/radical/radical.cpp</a>
    (12)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-98">src/mlpack/methods/radical/radical.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-99">src/mlpack/methods/range_search/range_search.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-100">src/mlpack/methods/range_search/range_search_impl.hpp</a>
    (18)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-101">src/mlpack/methods/rann/ra_search.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-102">src/mlpack/methods/rann/ra_search_impl.hpp</a>
    (45)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-103">src/mlpack/methods/sparse_coding/sparse_coding.hpp</a>
    (3)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-104">src/mlpack/methods/sparse_coding/sparse_coding_impl.hpp</a>
    (13)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-105">src/mlpack/tests/CMakeLists.txt</a>
    (1)
  </li>
  <li>
    <strong>D</strong>
    <a href="https://github.com/mlpack/mlpack/pull/487/files#diff-106">src/mlpack/tests/to_string_test.cpp</a>
    (533)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/mlpack/mlpack/pull/487.patch'>https://github.com/mlpack/mlpack/pull/487.patch</a></li>
  <li><a href='https://github.com/mlpack/mlpack/pull/487.diff'>https://github.com/mlpack/mlpack/pull/487.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br>Reply to this email directly or <a href="https://github.com/mlpack/mlpack/pull/487">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AJ4bFMRCmbzlUokwz05DBp9JlMiYD8PMks5pLiFQgaJpZM4GsuG0.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/mlpack/mlpack/pull/487"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>