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 function takes as input a graph G wich is returned by a function in the networkx library.
So I want to time this block of code:
import maxcut as mc
import networkx as nx
G = nx.complete_graph(3)
mc.largest_eigenvector(G)
It obviously works fine. Than to time it I did this:
s = """
import maxcut as mc
import networkx as nx
G = nx.complete_graph(3)
"""
t = timeit.Timer(s, 'mc.largest_eigenvector(G)')
But it says: UnboundLocalError: local variable 'mc' referenced before assignment
I don't know why. Please someone help it's just a syntax problem and I can't find a decent documentation for this.