diff --git a/cz.py b/cz.py index edf1a36..d2d69f4 100644 --- a/cz.py +++ b/cz.py @@ -1,29 +1,24 @@ -from graph import Graph from matplotlib import pyplot as plt +from graph import * +from viz import draw -class GraphState(Graph): - - def __init__(self, n): - Graph.__init__(self, n) - - def local_complementation(self, a): - for i in self.neighbours[a]: - for j in self.neighbours[a]: - if i