Skip to content
Snippets Groups Projects
Commit 5a3ac0ad authored by Tue Herlau's avatar Tue Herlau
Browse files

2021 coming up

parent 0be2f9e1
No related branches found
No related tags found
No related merge requests found
......@@ -130,11 +130,11 @@ def evaluate_report(report, question=None, qitem=None, passall=False, verbose=Fa
if not hidden:
print(ss, end="")
sys.stdout.flush()
from timeit import timeit
timeit()
import time
start = time.time()
(current, possible) = item.get_points(show_expected=show_expected, show_computed=show_computed,unmute=unmute, passall=passall)
q_[j] = {'w': iw, 'possible': possible, 'obtained': current, 'hidden': hidden, 'computed': str(item._computed_answer)}
tsecs = np.round(timeit(), 2)
tsecs = np.round(time.time-start, 2)
# q.possible += possible * iw
# q.obtained += current * iw
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment