Robert Klemme wrote:
> Hi there,
> 
> is there another way of accessing Infinity or -Infinity other than doing
> 1.0/0 or -1.0/0?  I could not find any...  TIA!

I couldn't find anything either, so I do this sometimes:

class Float
   Infinity = 1.0/0
end

if -3.0/0 == Float::Infinity
   puts "infinite"
end