[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Duration between two days

Sky Yin

1/14/2006 3:53:00 PM

According to the Rdoc of Date class, operator '-(x)' is described as:

If x is a Date <http://www.ruby-doc.org/core/classes/Dat..., return the
number of days between the two dates; or, more precisely, how many days
later the current date is than x.

However, a quick test in irb gives me a weird result:

>require 'date'
true
>a = Date.new 2004, 1, 1
#<Date: 4906011/2,0,2299161>
>b = Date.new 2004, 1, 3
#<Date: 4906015/2,0,2299161>
>b - a
Rational(2, 1)

Basic math tells me 2/1 = 2, so what's the point of returning Rational
instead of Fixnum here?

Thanks.
8 Answers

Joe Van Dyk

1/14/2006 4:55:00 PM

0

On 1/14/06, Sky Yin <sky.yin@gmail.com> wrote:
> According to the Rdoc of Date class, operator '-(x)' is described as:
>
> If x is a Date <http://www.ruby-doc.org/core/classes/Dat..., return the
> number of days between the two dates; or, more precisely, how many days
> later the current date is than x.
>
> However, a quick test in irb gives me a weird result:
>
> >require 'date'
> true
> >a = Date.new 2004, 1, 1
> #<Date: 4906011/2,0,2299161>
> >b = Date.new 2004, 1, 3
> #<Date: 4906015/2,0,2299161>
> >b - a
> Rational(2, 1)
>
> Basic math tells me 2/1 = 2, so what's the point of returning Rational
> instead of Fixnum here?

It's something to do with Astronomical Julian Days and fractional days.


Will

1/14/2006 4:58:00 PM

0

I'm relatively new to Ruby, but I would guess that this is so the
Datetime class (which extends the Date class) -() method can be used
interchangably w/ Date and Datetime objects; if you are subtracting
Date and Datetime objects, you could end up with a fraction of a day,
in which case Fixnum would not be appropriate for representing the
return value.

Maybe someone with more Ruby experience can give you a better answer or
correct me if I'm way off base.

David Vallner

1/14/2006 11:30:00 PM

0

On Sat, 14 Jan 2006 16:52:41 +0100, Sky Yin <sky.yin@gmail.com> wrote:

>
> Basic math tells me 2/1 = 2, so what's the point of returning Rational
> instead of Fixnum here?
>

Because the code calculates in rationals?

You might want to 'require "mathn"' on the beginning of the script if it
bugs you, the module causes Ruby math to work more... err...
mathemathically. E.g.:

irb(main):001:0> Rational(2, 1)
=> Rational(2, 1)
irb(main):002:0> require "mathn"
=> true
irb(main):003:0> Rational(2, 1)
=> 2

As always after doing deeper magic, be on the lookout for bugs the module
could introduce.

David Vallner


Sky Yin

1/15/2006 2:30:00 AM

0

Thanks, Joe and David. Although I don't quite understand the science behind
that, add a bit more ".to_i" is enough for me.

On 1/14/06, David Vallner <david@vallner.net> wrote:
>
> On Sat, 14 Jan 2006 16:52:41 +0100, Sky Yin <sky.yin@gmail.com> wrote:
>
> >
> > Basic math tells me 2/1 = 2, so what's the point of returning Rational
> > instead of Fixnum here?
> >
>
> Because the code calculates in rationals?
>
> You might want to 'require "mathn"' on the beginning of the script if it
> bugs you, the module causes Ruby math to work more... err...
> mathemathically. E.g.:
>
> irb(main):001:0> Rational(2, 1)
> => Rational(2, 1)
> irb(main):002:0> require "mathn"
> => true
> irb(main):003:0> Rational(2, 1)
> => 2
>
> As always after doing deeper magic, be on the lookout for bugs the module
> could introduce.
>
> David Vallner
>
>

Brian Buckley

1/15/2006 6:12:00 AM

0

> irb(main):002:0> require "mathn"


Though getting a Rational back is not incorrect, clearly getting a Fixnum
back would be one's initial expectation.

Interesting that 'mathn' caused a change in return type. I suppose that
means the return type is not part of the date subtraction contract. I
quickly eyeballed mathn.rb to try to see the specific reason for the change
in return type. My guess if that Date - Date uses the ** operator because
** is redefined in mathn.


Brian Buckley

Logan Capaldo

1/15/2006 6:24:00 AM

0


On Jan 15, 2006, at 1:12 AM, Brian Buckley wrote:

>> irb(main):002:0> require "mathn"
>
>
> Though getting a Rational back is not incorrect, clearly getting a
> Fixnum
> back would be one's initial expectation.
>
> Interesting that 'mathn' caused a change in return type. I suppose
> that
> means the return type is not part of the date subtraction contract. I
> quickly eyeballed mathn.rb to try to see the specific reason for
> the change
> in return type. My guess if that Date - Date uses the ** operator
> because
> ** is redefined in mathn.
>
>
> Brian Buckley

Requiring mathn did not change the return type. Requiring mathn
changed how rationals display themselves (ie it changed
Rational#inspect). (It also changed Integer#/ to return rationals
instead of Integers, among other things I am sure)


Brian Buckley

1/15/2006 2:40:00 PM

0

>
> Requiring mathn did not change the return type. Requiring mathn
> changed how rationals display themselves


I think the return type is changed, not just how Rationals are displayed.

(date2 - date1).class # => Rational
require 'mathn'
(date2 - date1).class # => Fixnum

David Vallner

1/15/2006 4:07:00 PM

0

On Sun, 15 Jan 2006 07:12:26 +0100, Brian Buckley
<briankbuckley@gmail.com> wrote:

>> irb(main):002:0> require "mathn"
>
>
> Though getting a Rational back is not incorrect, clearly getting a Fixnum
> back would be one's initial expectation.
>
> Interesting that 'mathn' caused a change in return type. I suppose that
> means the return type is not part of the date subtraction contract. I
> quickly eyeballed mathn.rb to try to see the specific reason for the
> change
> in return type. My guess if that Date - Date uses the ** operator
> because
> ** is redefined in mathn.
>
>
> Brian Buckley


Yes, the change of return type is intentional - from skimming the source
code, aside from the newly defined features, it seems mathn tweaks some
flags to make Rational and Complex always unify to Integers if possible,
and aliases Integer#/ for division of Integers to return Rationals. The
latter might NOT be what you might want if you're used to the (IMO
illogical) C behaviour of using integral division instead. mathn doesn't
redefine Rational#**, it defines it in the first place.

The date substraction contract is not violated, because Integers should
have the same contract for every operation they share with Rationals of
the same value. If that's not the case, it could be considered a bug in
the Ruby core API.

David Vallner