(v)
| 152 | // where codegraph in fact occupies 82% MORE — a double negative that reads as a |
| 153 | // win and inverts the headline. Say which way it went, in words. |
| 154 | const dir = (v) => (v < 0 ? 'HIGHER' : 'lower'); |
| 155 | const magn = (v) => Math.abs(v); |
| 156 | console.log( |
| 157 | `\nAVERAGE: retrieval residual ${magn(avg(occ.resid))}% ${dir(avg(occ.resid))} with codegraph` + |
no outgoing calls
no test coverage detected