Displaying 1 result from an estimated 1 matches for "09bf212f".
2017 Aug 04
4
BranchProbability/BlockFrequency for a chain of ifs
I'm look at some code that does something roughly like this
if (a >= 10 && a < 20) {
// do calculation
} else if (a >= 30 && a < 40) {
// do calculation
} else if (a >= 50 && a < 60) {
// do something
} else if (a >= 70 && a < 80) {
// do something
}
// some other code that got split based on whether we entered any of the