<div>Your Honor Processors,</div>
<div>        I am puzzled by some code I found in Alps/src/AlpsSearchStrategy.h   line 82-84 and in Alps/src/AlpsSearchStrategy.cpp line 55-58</div>
<div>        </div>
<div>         There are comment in AlpsSearchStrategy.h</div>
<div>         /** This returns true if the quality of the subtree y is better  (the less the better) than that the subtree x. */<br>        virtual bool compare(AlpsSubTree * x, AlpsSubTree * y);</div>
<div>    </div>
<div>        While in AlpsSearchStrategy.cpp</div>
<div>        bool <br>        AlpsTreeSelectionBest::compare(AlpsSubTree * x, AlpsSubTree * y) <br>        {<br>                 return (x-&gt;getQuality() &lt; y-&gt;getQuality());<br>        } </div>
<div> </div>
<div>        obviously it will return true if x is better than y, is this conflicted to AlpsSearchStrategy.h?</div>
<div> </div>
<div>        Because I can`t find where the compare() is called, so I can`t make sure if it is a bug.</div>
<div>        Could explain it to me? Thank you very much!</div>
<div>    </div>
<div>        Best Wishes.</div>