We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f16986 commit eae3adfCopy full SHA for eae3adf
src/sage/graphs/orientations.py
@@ -86,7 +86,7 @@ def acyclic_orientations(G):
86
sage: import timeit
87
sage: G_C100, start_time = graphs.CycleGraph(100), timeit.default_timer()
88
sage: it_C100, first_10_orientations = G_C100.acyclic_orientations(), list(islice(G_C100.acyclic_orientations(), 10))
89
- sage: print(timeit.default_timer() - start_time < 0.05)
+ sage: print(timeit.default_timer() - start_time < 0.5)
90
True
91
92
TESTS:
0 commit comments