(self)
| 66 | raise RuntimeError("graph_hard_reset failed") |
| 67 | |
| 68 | def execute(self): |
| 69 | rc = _lib.cactus_graph_execute(self.h) |
| 70 | if rc != 0: |
| 71 | raise RuntimeError("graph_execute failed") |
| 72 | |
| 73 | def add(self, a, b): |
| 74 | return self._binary("cactus_graph_add", a, b) |
no outgoing calls