소스 검색

Start diffing

master
Pete Shadbolt 8 년 전
부모
커밋
a8e9a9eae4
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. +9
    -1
      abp/graphstate.py

+ 9
- 1
abp/graphstate.py 파일 보기

@@ -13,7 +13,7 @@ except ImportError:
print "Could not import networkx: layout will not work"


class GraphState(object):
class BaseGraphState(object):

def __init__(self, nodes = []):
self.ngbh = {}
@@ -231,3 +231,11 @@ class GraphState(object):
def __eq__(self, other):
""" Check equality between graphs """
return self.ngbh == other.ngbh and self.vops == other.vops

class DiffedGraphState(BaseGraphState):
pass

class GraphState(BaseGraphState):
pass



불러오는 중...
취소
저장