(nodes)
| 205 | |
| 206 | |
| 207 | def check_node_weights(nodes): |
| 208 | check_id_weights(nodes.ids, nodes.weights) |
| 209 | |
| 210 | def check_id_weights(ids, weights): |
| 211 | npt.assert_almost_equal(weights.reshape(-1), 0.1 * ids.reshape(-1), decimal=5) |
nothing calls this directly
no test coverage detected