(v)
| 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` + |
| 158 | ` · share-of-context ${magn(avg(occ.shareCtx))}% ${dir(avg(occ.shareCtx))}` |
no outgoing calls
no test coverage detected