diff options
| author | LV-426 <lv-426@taproot.org.il> | 2014-12-14 23:12:02 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2014-12-14 23:15:47 +0200 |
| commit | e6144b232e3ff626d654bf274025f5d55a6bca84 (patch) | |
| tree | a010edc6a4dee16143d69705aabfa6c89f60fc19 /src-py/model/graph.py | |
| parent | 74d413161c9e847c8ff8f02737bcb66eb71b742b (diff) | |
link attr operations not yet supported...
Diffstat (limited to 'src-py/model/graph.py')
| -rw-r--r-- | src-py/model/graph.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src-py/model/graph.py b/src-py/model/graph.py index efc403d4..f197921d 100644 --- a/src-py/model/graph.py +++ b/src-py/model/graph.py @@ -59,6 +59,12 @@ class Attr_Diff(dict): n_attr_diff = self.init_node_attr_diff(n_id) n_attr_diff['__attr_remove'].append(attr_name) + def add_link_attr_write(self, l_id, attr_name, attr_val): + assert False, 'unimplemented' + + def add_link_attr_rm(self, l_id, attr_name): + assert False, 'unimplemented' + class Topo_Diff(object): """ Represents a change to the graph topology |
