# File lib/rvg/deep_equal.rb, line 5
            def deep_equal(other)
                if self != other
                    puts "#{c.inspect} not equal.\nself:#{self} != other:#{other}"
                    return false
                end
                return true
            end