mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-29 00:17:44 +00:00
cb27e02a66
Problem: - Many parallel runs crashed with: AttributeError: 'QuantTrace' object has no attribute 'controller' - controller was only initialized in increment_factor_count(), not in __init__ - Code in quant_proposal.py line 66-67 accesses trace.controller before increment_factor_count() is called Fix: - Move self.controller = EnvController() to __init__ method - controller is now available from the start Also: - Removed redundant controller initialization from increment_factor_count() - This fixes crashes for ~50% of the parallel runs