You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In DoubleRange.cs and IntegerRange.cs, I think the IsInside function is in
error; Don't really know how it affect the code and examples, I'm just
starting to look at it !
Original:
public bool IsInside( double x )
{
return ( ( x >= min ) && ( x <= min ) ); // This looks like return x == min
}
Should be (?) :
return ( ( x >= min ) && ( x <= max ) );
Original issue reported on code.google.com by martinmiller@gmail.com on 22 Jan 2007 at 2:14
The text was updated successfully, but these errors were encountered:
Good !
Also, As was studying the code I'm not sure about the IsInside "definition" and
IsOverlaping "definition"; I find them not as good as "intersect" and "subset",
as
used in Set theory ( http://en.wikipedia.org/wiki/Set )
But I'm just nitpicking ;-)
Original comment by martinmiller@gmail.com on 22 Jan 2007 at 2:35
Original issue reported on code.google.com by
martinmiller@gmail.com
on 22 Jan 2007 at 2:14The text was updated successfully, but these errors were encountered: