(self, nets)
| 2900 | return self._plan |
| 2901 | |
| 2902 | def AddNets(self, nets): |
| 2903 | for net in nets: |
| 2904 | if _add_net_to_dict(self._net_dict, net): |
| 2905 | assert isinstance(net, Net) |
| 2906 | self._plan.network.add().CopyFrom(net.Proto()) |
| 2907 | |
| 2908 | def Nets(self): |
| 2909 | return list(self._net_dict.values()) |
no test coverage detected