1 """accumulator.py: transcription of GeographicLib::Accumulator class.""" 18 """Like math.fsum, but allows a running sum""" 21 """Set value from argument""" 23 self.
_s, self.
_t = y._s, y._t
35 y, u = Math.sum(y, self.
_t)
36 self.
_s, self.
_t = Math.sum(y, self.
_s)
70 def Sum(self, y = 0.0):
def __init__(self, y=0.0)