Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docfix postcondition of symmetricPower
According to the specification of symmetricRemainder in si.spad symmetricRemainder : (%, %) -> % ++ symmetricRemainder(a, b) (where \spad{b > 1}) yields r ++ where \spad{-b/2 <= r < b/2}. the result of ``` %%% (1) -> symmetricRemainder(2,4) (1) 2 ``` is clearly wrong (should be -2 according to the above specification). This patch corrects the specification.
- Loading branch information