| 283 | } |
| 284 | } |
| 285 | void writeArray(const NumpyArrayType& f) |
| 286 | { |
| 287 | if(id->typ=MATRIX_CMD) |
| 288 | { |
| 289 | matrix m=matrixFromArray(f); |
| 290 | id_Delete((ideal*) &id->data.umatrix,currRing); |
| 291 | id->data.umatrix=m; |
| 292 | } |
| 293 | } |
| 294 | void writeRing(const Ring& r) |
| 295 | { |
| 296 | if(id->typ=RING_CMD) |
nothing calls this directly
no test coverage detected