Remove old print.

This commit is contained in:
Mikaël Capelle 2024-12-26 15:26:36 +01:00
parent 0acb51ca97
commit b881bf9ce4

View File

@ -63,7 +63,6 @@ class Solver(BaseSolver):
(x, y, z), (vx, vy, vz), positions[i1], velocities[i1]
):
equations.append(p + ti * d - pi - ti * di)
print(equations)
r = solve(equations, [x, y, z, vx, vy, vz] + list(ts), dict=True)[0]
yield r[x] + r[y] + r[z]