(self)
| 69 | |
| 70 | # nothing special. just fit legacy code input syle |
| 71 | def compact_logical_form(self): |
| 72 | lf = self.logical_form() |
| 73 | return lf.replace('( ', '(').replace(' )', ')') |
| 74 | |
| 75 | def skeleton_form(self): |
| 76 | if self.depth == 0: |
nothing calls this directly
no test coverage detected