On Nov 26, 2008, at 7:29 AM, Bill Page wrote: > > It seems awkward to have to perform each integration twice: > > test_int = integrand.integrate(x) > ... > mx_time = timeit.eval('integrand.integrate(x)') > > The first one gets the value for comparison and the second time to get > the cpu time. > > Isn't there some way to combine these operations in Sage? I tried: > > mx_time = timeit.eval('test_int = integrand.integrate(x)') > > but this does not seem to work. > > Regards, > Bill Page. >
I don't know of any way of doing it. Plus, since timeit loops multiple times anyway, it's only adding one extra call. This way makes it simple to skip the timing step which is useful for when I'm running tests. I'm thinking about an alternate way of specifying and running the tests, but I haven't decided on anything yet. My newer version of the code is somewhat better, but I'm still not happy with it. Cheers, Tim. --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-devel URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---