You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 25, 2026. It is now read-only.
In deviation(), the three dimensions for reachable_corners and nominal_trajectory are state variables, points, time; while in bounded_runs_iter(), the three dimensions for the return value are time, augmented state, min/max; finally, the return value of evol() has dimensions time, state variables.
Making these have the same ordering of dimensions will reduce the chance of making mistakes while passing arguments across functions, such as passing in a nominal trajectory to deviation() from evol(). Of course, we should wait until after the deadlines to make these changes.
In
deviation(), the three dimensions forreachable_cornersandnominal_trajectoryare state variables, points, time; while inbounded_runs_iter(), the three dimensions for the return value are time, augmented state, min/max; finally, the return value ofevol()has dimensions time, state variables.Making these have the same ordering of dimensions will reduce the chance of making mistakes while passing arguments across functions, such as passing in a nominal trajectory to
deviation()fromevol(). Of course, we should wait until after the deadlines to make these changes.