Update factory.py

fix bug in factorybuilder
This commit is contained in:
onyx-and-iris 2022-06-16 17:31:32 +01:00
parent 575b681445
commit f84b831260

View File

@ -37,14 +37,14 @@ class FactoryBuilder:
def make_strip(self) -> Self: def make_strip(self) -> Self:
self._factory.strip = tuple( self._factory.strip = tuple(
strip(self.kind.phys_in < i, self._factory, i) strip(i < self.kind.phys_in, self._factory, i)
for i in range(self.kind.num_strip) for i in range(self.kind.num_strip)
) )
return self return self
def make_bus(self) -> Self: def make_bus(self) -> Self:
self._factory.bus = tuple( self._factory.bus = tuple(
bus(self.kind.phys_out < i, self._factory, i) bus(i < self.kind.phys_out, self._factory, i)
for i in range(self.kind.num_bus) for i in range(self.kind.num_bus)
) )
return self return self