class SassC::Script::Value::Number

def self.epsilon

The value for epsilon is one tenth of the current numeric precision.
numbers within an `epsilon` of each other are considered functionally equal.
Used in checking equality of floating point numbers. Any
def self.epsilon
  Thread.current[:sass_numeric_epsilon] ||= 1 / (precision_factor * 10)
end