<p>In <a href="https://github.com/mlpack/mlpack/pull/732#discussion_r71894175">src/mlpack/methods/cf/cf.hpp</a>:</p>
<pre style='color:#555'>&gt; +  {
&gt; +    //! Value of this recommendation.
&gt; +    double value;
&gt; +    //! Item of this recommendation.
&gt; +    size_t item;
&gt; +    //! Trivial constructor.
&gt; +    Candidate(double value, size_t item) :
&gt; +        value(value),
&gt; +        item(item)
&gt; +    {};
&gt; +    //! Compare the value of two candidates.
&gt; +    friend bool operator&gt;(const Candidate&amp; l, const Candidate&amp; r)
&gt; +    {
&gt; +      return l.value &gt; r.value;
&gt; +    };
&gt; +  };
</pre>
<p>Is there a compelling reason to avoid <code>std::pair&lt;&gt;</code> 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/732/files/57dd61f1d823f209c8d0f67fa69f8a8ae0669d18#r71894175">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AJ4bFGk3tScOfudj-no_bHujqIjq_f7tks5qYNzdgaJpZM4JScnZ">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AJ4bFG1BbTFJd5hGuZ2ZuUwbyCTodz3Oks5qYNzdgaJpZM4JScnZ.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/732/files/57dd61f1d823f209c8d0f67fa69f8a8ae0669d18#r71894175"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>