(self, concurrent_substeps)
| 2790 | return self |
| 2791 | |
| 2792 | def SetConcurrentSubsteps(self, concurrent_substeps): |
| 2793 | self._assert_can_mutate() |
| 2794 | assert not self.HasNets(), 'Cannot have both network and substeps.' |
| 2795 | self._step.concurrent_substeps = concurrent_substeps |
| 2796 | |
| 2797 | def AddNet(self, net): |
| 2798 | self._assert_can_mutate() |