(model: _LinearModel, x: Sequence[Sequence[float]])
| 193 | xtwy = [0.0 for _ in range(dim)] |
| 194 | |
| 195 | for row, yy, w in zip(x, y, sw): |
| 196 | design = [1.0] + list(row) |
| 197 | for i in range(dim): |
| 198 | xtwy[i] += w * design[i] * yy |
| 199 | for j in range(dim): |
no test coverage detected