Lines Matching defs:score
22 // in the ExtTSP score, which models how i-cache "friendly" a specific chain is.
32 // X2X1Y, X2YX1, YX1X2, YX2X1) and choose the one producing the largest score.
142 // Compute the Ext-TSP score for a given jump.
151 // Compute the Ext-TSP score for a jump between a given pair of blocks,
179 /// The gain of merging two chains, that is, the Ext-TSP score of the merge
186 double score() const { return Score; }
353 // Cached ext-tsp score for the chain.
429 double gain() const { return CachedGain.score(); }
779 if (CurGain.score() <= EPS)
783 (std::abs(CurGain.score() - BestGain.score()) < EPS &&
794 if (BestGain.score() <= EPS)
825 /// Compute the Ext-TSP score for a given node order and a list of jumps.
927 /// Compute the score gain of merging two chains, respecting a given
963 // Update cached ext-tsp score for the new chain.
1230 if (std::abs(Gain.score() - NewGain.score()) < EPS) {
1235 } else if (NewGain.score() > Gain.score() + EPS) {
1247 /// Compute the score gain of merging two chains, respecting a given type.
1439 // Increase the score for each jump.