Tagged Questions
3
votes
5answers
2k views
python: slow timeit() function
When I run the code below outside of timeit(), it appears to complete instantaneously. However when I run it within the timeit() function, it takes much longer. Why?
>>> import timeit
...
0
votes
2answers
74 views
Timeit Python. How does it work?
I want to time a function and I'd like to use the timeit library. I can't find any good example on the net. I have to time the function "largest_eigenvector" which is in the maxcut library, this ...