<p>In <a href="https://github.com/mlpack/mlpack/pull/691#discussion_r68646190">src/mlpack/methods/lsh/lsh_search_impl.hpp</a>:</p>
<pre style='color:#555'>&gt; @@ -477,6 +933,23 @@ void LSHSearch&lt;SortPolicy&gt;::Search(const arma::mat&amp; querySet,
&gt;    if (k == 0)
&gt;      return;
&gt;  
&gt; +  // If the user requested more than the available number of additional probing
&gt; +  // bins, set Teffective to maximum T. Maximum T is 2^numProj - 1
&gt; +  size_t Teffective = T;
&gt; +  if (T &gt; ( (size_t) ( (1 &lt;&lt; numProj) - 1) ) )
&gt; +  {
&gt; +    Teffective = ( 1 &lt;&lt; numProj ) - 1;
&gt; +    Log::Warn &lt;&lt; &quot;Requested &quot; &lt;&lt; T &lt;&lt; 
&gt; +      &quot; additional bins are more than theoretical maximum. Using &quot; &lt;&lt;
&gt; +      Teffective &lt;&lt; &quot; instead.&quot; &lt;&lt; std::endl;
</pre>
<p>I like to make these lines as long as I can by splitting the strings up, and starting new lines with <code>&lt;&lt;</code>.  Whatever you want to do is fine, but the new lines should at least be indented four characters instead of two.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/mlpack/mlpack/pull/691/files/71eda99e207a9b91581504e11a9e14d38838bc9f#r68646190">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe/AJ4bFFuqWOvNHO4d4lQ1LVMiCLW71mYEks5qQC2ZgaJpZM4IxQW5">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AJ4bFHERi8ArM7bzONEATqTIBVl059mdks5qQC2ZgaJpZM4IxQW5.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/691/files/71eda99e207a9b91581504e11a9e14d38838bc9f#r68646190"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>