(*arrays)
| 491 | |
| 492 | |
| 493 | def _check_consistent_shapes(*arrays): |
| 494 | all_shapes = {a.shape for a in arrays} |
| 495 | if len(all_shapes) != 1: |
| 496 | raise ValueError('The shapes of the passed in arrays do not match') |
| 497 | |
| 498 | |
| 499 | class Quiver(mcollections.PolyCollection): |
no outgoing calls
no test coverage detected
searching dependent graphs…