Loading supply_chain_sim/simulation.py +3 −3 Original line number Diff line number Diff line Loading @@ -174,11 +174,11 @@ class SupplyChainSimulation: for month in range(self.config.get('n_months', 12)): # Simple prediction based on category if watch.category == 'luxury': base = 5 base = 200 elif watch.category == 'sport': base = 15 base = 200 else: # casual base = 25 base = 200 # Add some variation prediction = base + np.random.normal(0, 3) Loading Loading
supply_chain_sim/simulation.py +3 −3 Original line number Diff line number Diff line Loading @@ -174,11 +174,11 @@ class SupplyChainSimulation: for month in range(self.config.get('n_months', 12)): # Simple prediction based on category if watch.category == 'luxury': base = 5 base = 200 elif watch.category == 'sport': base = 15 base = 200 else: # casual base = 25 base = 200 # Add some variation prediction = base + np.random.normal(0, 3) Loading