Lines Matching refs:self
74 def __init__(self, operation, type0, type1):
75 self.name = arithOperations[operation] + '_' + type0 + '_' + type1
76 self.operation = operation
77 self.type0 = type0
78 self.type1 = type1
80 def __str__(self):
81 params0 = { "NAME": self.name + '_' + self.type0, "TYPE0": self.type0, "TYPE1": self.type1, "OPERATION": self.operation }
82 params1 = { "NAME": self.name + '_' + self.type1, "TYPE0": self.type0, "TYPE1": self.type1, "OPERATION": self.operation }