In sarsa λ with accumulative eligibility traces (http://webdocs.cs.ualberta.ca/~sutton/book/ebook/node77.html) the algorithm given doesn't match with the formula.
The formula says E ← ɣλE+1
where as [algo] updates with first E ← E+1, then E ← ɣλE making the update effectively
E ← ɣλ.(E+1)
which is correct? I have also seen research papers with the exact same formula and algo.
Is it a discrepancy in the publication that they missed putting a pair of brackets around E+1?
If so, how is it that most research papers replicated the same error.
OR
if I've misunderstood something, please point out.