Skip to content
Snippets Groups Projects
Select Git revision
  • c5c1a78e460156a1234470f6432f77ea613d0625
  • master default protected
2 results

requirements.txt

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    This project manages its dependencies using pip. Learn more
    direct_agent_TODO_2.py 329 B
            t = info['time_seconds']
            if t > self.ts_grid[-1]:
                print("Simulation time is", t, "which exceeds the maximal planning horizon t_F =", self.ts_grid[-1])
                raise Exception("Time exceed agents planning horizon")
    
            u = self.ufun(t)
            u = np.asarray(self.env.discrete_model.phi_u(u))