<p>In <a href="https://github.com/mlpack/mlpack/pull/683#discussion_r66460836">src/mlpack/methods/edge_boxes/feature_extraction_impl.hpp</a>:</p>
<pre style='color:#555'>&gt; +  arma::vec d(n), v(n), z(n + 1);
&gt; +  int k = 0;
&gt; +  v[0] = 0.0;
&gt; +  z[0] = -INF;
&gt; +  z[1] = +INF;
&gt; +  for (size_t q = 1; q &lt;= n - 1; ++q)
&gt; +  {
&gt; +    float s  = ( (f[q] + q * q)-( f[v[k]] + v[k] * v[k]) ) / (2 * q - 2 * v[k]);
&gt; +    while (s &lt;= z[k])
&gt; +    {
&gt; +      --k;
&gt; +      s  = ( (f[q] + q * q) - (f[v[k]] + v[k] * v[k]) ) / (2 * q - 2 * v[k]);
&gt; +    }
&gt; +
&gt; +    k++;
&gt; +    v[k] = (double)q;
</pre>
<p>Forgive me if I am picky about this, I think static_cast is a better choice than old style c cast at here</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/683/files/9d85b64c6c6bdff608331195351d09abf56cfc96#r66460836">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe/AJ4bFFDGhQ_RwOqv6oJp358UMFVIKoP3ks5qKC47gaJpZM4IvUrl">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AJ4bFFvDKOzTjoqmwS4UJb8_iEZCheexks5qKC47gaJpZM4IvUrl.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/683/files/9d85b64c6c6bdff608331195351d09abf56cfc96#r66460836"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>