(self, *band_functions)
| 981 | self.run_parity(mp.EVEN_Y, True, *band_functions) |
| 982 | |
| 983 | def run_yodd(self, *band_functions): |
| 984 | self.run_parity(mp.ODD_Y, True, *band_functions) |
| 985 | |
| 986 | def run_yeven_zeven(self, *band_functions): |
| 987 | self.run_parity(mp.EVEN_Y + mp.EVEN_Z, True, *band_functions) |
nothing calls this directly
no test coverage detected