Simplify RealLimits; rm AttLimits
RealLimits lets us choose between inclusive and exclusive limits, like 0<=x vs 0<x. However, sometimes we may want to force a value into the allowed interval. This cannot be done with exclusive limits. Therefore it is better to support only inclusive limits. The condition 0<x shall be replaced by eps<x, where it is left to the API user to choose a reasonable value for eps.
AttLimits just wraps RealLimits and one single boolean, Resolved in !3438 (merged).m_fixed. This is unnecessary overhead, and should be removed first.
For RealLimits, use +-infinity to get rid of "has limits" flags (< #874 (closed)). Resolved in !3437 (merged).
Edited by Joachim Wuttke