Lines Matching defs:BBWeight
210 uint64_t BBWeight = BlockWeights[EC];
217 if (BBWeight != SumEdgeWeight) {
219 << BBWeight << " SumEdgeWeight= " << SumEdgeWeight
221 BBWeight = SumEdgeWeight;
223 if (BBWeight == 0) {
229 uint64_t BBWeightOrig = BBWeight;
233 if (BBWeight > MaxWeight) {
234 Factor = BBWeight / MaxWeight + 1;
235 BBWeight /= Factor;
247 assert(BBWeight >= EdgeWeight &&
251 BranchProbability NewProb(EdgeWeight, BBWeight);