Aravind, You need to learn about using a profiler to see which code paths take the most time. Python has a built-in profiler and i like visualizing that with snakeviz: https://jiffyclub.github.io/snakeviz/. Pyinstrument is really nice too. It gives you a different view.
Jason moorepants.info +01 530-601-9791 On Sat, Mar 5, 2016 at 11:02 AM, Aravind Reddy <[email protected]> wrote: > Isuru Fernando, > > Sir, > Thanks for your valuable guidance. As you suggested I have gone through > the *generate_n_link_pendulum_on_cart_equations_of_motion() *function to > see whether it is calling any functions other than those that are in > sympy.physics module. All I observed is that, in the code itself, it is not > calling any other functions. But there may be a chance that the functions > called here like *kanes_equation() *may call the functions we are looking > for. So now I am looking for such dependencies. Sir please correct me if I > am in a wrong way. > > Thank you, > Aravind > > -- > You received this message because you are subscribed to the Google Groups > "sympy" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/sympy. > To view this discussion on the web visit > https://groups.google.com/d/msgid/sympy/22e1326a-98a8-4d8c-b6f9-dc8d602f5ff8%40googlegroups.com > <https://groups.google.com/d/msgid/sympy/22e1326a-98a8-4d8c-b6f9-dc8d602f5ff8%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/CAP7f1AjFJv317psYwHc_5tJZhF8mn_o1%3DuqQ2GrcXXQ7j78EsA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
