We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b8e404 commit 644634eCopy full SHA for 644634e
tps_baseline_mueller.py
@@ -58,7 +58,7 @@ def interpolate_two_points(start, stop, steps):
58
dt = 1e-4
59
T = 275e-4
60
N = int(T / dt)
61
- initial_trajectory = [t.reshape(1, 2) for t in interpolate(minima_points, N)]
+ initial_trajectory = [t.reshape(1, 2) for t in interpolate(minima_points, 100 if N == 0 else N)]
62
63
64
@jax.jit
0 commit comments