27 lines
800 B
Python
27 lines
800 B
Python
|
|
class SgfTree(object):
|
||
|
|
def __init__(self, properties=None, children=None):
|
||
|
|
self.properties = properties or {}
|
||
|
|
self.children = children or []
|
||
|
|
|
||
|
|
def __eq__(self, other):
|
||
|
|
if not isinstance(other, SgfTree):
|
||
|
|
return False
|
||
|
|
for k, v in self.properties.items():
|
||
|
|
if k not in other.properties:
|
||
|
|
return False
|
||
|
|
if other.properties[k] != v:
|
||
|
|
return False
|
||
|
|
for k in other.properties.keys():
|
||
|
|
if k not in self.properties:
|
||
|
|
return False
|
||
|
|
if len(self.children) != len(other.children):
|
||
|
|
return False
|
||
|
|
for a, b in zip(self.children, other.children):
|
||
|
|
if a != b:
|
||
|
|
return False
|
||
|
|
return True
|
||
|
|
|
||
|
|
|
||
|
|
def parse(input_string):
|
||
|
|
pass
|