(self)
| 592 | return (start, list_sub(l, start, length, 0, [])) |
| 593 | |
| 594 | def get_lattice(self): |
| 595 | if self.mode_solver is None: |
| 596 | raise RuntimeError("Must call ModeSolver.run before getting the lattice.") |
| 597 | |
| 598 | lattice = np.zeros((3, 3)) |
| 599 | self.mode_solver.get_lattice(lattice) |
| 600 | |
| 601 | return lattice |
| 602 | |
| 603 | def output_field(self): |
| 604 | self.output_field_to_file(mp.ALL, self.get_filename_prefix()) |
no outgoing calls