Added updated reference, added python2 guard from graph.py

This commit is contained in:
Peter Deutsch 2023-02-23 14:54:30 -05:00
parent f2cba7d4af
commit 3e503fa7b2
2 changed files with 5 additions and 0 deletions

View File

@ -1,10 +1,15 @@
import os
import json
import sys
import matplotlib.pyplot as plt
import numpy as np
from tqdm import tqdm
from datetime import datetime
if sys.version_info < (3,0):
print("Run me with python3, not python2!")
sys.exit(1)
num_runs = 100
dict_of_dict_of_lists = dict()

Binary file not shown.