UNPKG

298 BJavaScriptView Raw
1/**
2 * Checks if the node at w[j] is marked
3 *
4 * @param {Array} w The array
5 * @param {Number} j The array index
6 *
7 * Reference: http://faculty.cse.tamu.edu/davis/publications.html
8 */
9export function csMarked (w, j) {
10 // check node is marked
11 return w[j] < 0
12}