1 2a 4e
2 1a 3b 4d
3 2b 4c
4 1e 2d 3c

take each node
	for each connected node, make a complete subgraph

e2v_convert(AL):
	DAL = {}
	for v in AL:
		for (w, edgelabel1) in AL[v]:
			for (u, edgelabel1) in AL[v]:
				if u is not w:
					if edgelabel1 not in DAL:
						DAL[edgelabel1] = []
					if edgelabel2 not in DAL:
						DAL[edgelabel2] = []
					DAL[edgelabel1].append(edgelabel2)
					DAL[edgelabel2].append(edgelabel1)
	return DAL