replace FPBaseData with FPPipeContext class name
[ieee754fpu.git] / src / ieee754 / fpcommon / getop.py
index 5ca46bfdc281464d0d1a8e220b8c68694d6b166e..0100880cd7967297974f589495256d09ca9dbb4d 100644 (file)
@@ -82,7 +82,7 @@ class FPNumBase2Ops:
         return [self.a, self.b, self.muxid]
 
 
-class FPBaseData:
+class FPPipeContext:
 
     def __init__(self, width, pspec):
         self.width = width
@@ -111,7 +111,7 @@ class FPADDBaseData:
 
     def __init__(self, width, pspec, n_ops=2):
         self.width = width
-        self.ctx = FPBaseData(width, pspec)
+        self.ctx = FPPipeContext(width, pspec)
         ops = []
         for i in range(n_ops):
             name = chr(ord("a")+i)