(i, j, data)
| 7436 | } |
| 7437 | |
| 7438 | function compare(i, j, data) { |
| 7439 | i *= 2 |
| 7440 | j *= 2 |
| 7441 | var x = data[i], |
| 7442 | y = data[j] |
| 7443 | if(x < y) { |
| 7444 | return false |
| 7445 | } else if(x === y) { |
| 7446 | return data[i+1] > data[j+1] |
| 7447 | } |
| 7448 | return true |
| 7449 | } |
| 7450 | |
| 7451 | function comparePivot(i, y, b, data) { |
| 7452 | i *= 2 |
no outgoing calls
no test coverage detected
searching dependent graphs…