Skip to content

Commit d4abb24

Browse files
committed
Rename _transform_func to _func_axiom
1 parent 12cc68f commit d4abb24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyk/src/pyk/klean/k2lean4.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,10 @@ def inj(subsort: str, supersort: str, x: str) -> Term:
247247
return res
248248

249249
def func_module(self) -> Module:
250-
commands = [self._transform_func(func) for func in self.defn.functions]
250+
commands = [self._func_axiom(func) for func in self.defn.functions]
251251
return Module(commands=commands)
252252

253-
def _transform_func(self, func: str) -> Axiom:
253+
def _func_axiom(self, func: str) -> Axiom:
254254
ident = _symbol_ident(func)
255255
decl = self.defn.symbols[func]
256256
sort_params = [var.name for var in decl.symbol.vars]

0 commit comments

Comments
 (0)