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
formatrixinmatrices:
# TODO : SymPy 0.7.4 does not have Matrix.free_symbols so we# manually compute them instead of calling:# required_args |= matrix.free_symbolsrequired_args|=set().union(*[i.free_symbolsforiinmatrix])
required_args|=find_dynamicsymbols(matrix)
can be very slow.
If you symbolically solve the equations of motion for a large system and then pass those equations to the matrix generator it can sit on these lines for extremely long times.
These lines:
https://github.com/pydy/pydy/blob/master/pydy/codegen/matrix_generator.py#L53
can be very slow.
If you symbolically solve the equations of motion for a large system and then pass those equations to the matrix generator it can sit on these lines for extremely long times.
Hit this with this model: https://github.com/csu-hmc/gait2d
The text was updated successfully, but these errors were encountered: