54: #line 89 "felix_func.ipk" 55: class constant(function): 56: def __init__(self, value): self.value = value 57: def __call__(self, arg): return self.value 58: def is_equivalent(self, other): return self.value == other.value 59: