Monthly Release Plan Template

PowerPoint Ideas To Share A Product Launch Event

bmw m5 f10 4k wallpapers wallpaper cave

:
Moneesh Bhow
Handle NaN arguments in fac and ncr, fixes London Blue Route Map
1 parent Highest Cash Back Credit Card commit 9108148

Bmw m5 f10 4k wallpapers wallpaper cave 1 file changed Product Launch PMO Template

Lines changed: 2 additions & 2 deletions

How To Set Up A Blog PowerPoint Ideas Share Product Launch Event

tinyexpr.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void te_free(te_expr *n) {
125125
static double pi(void) {return 3.14159265358979323846;}
126126
static double e(void) {return 2.71828182845904523536;}
127127
static double fac(double a) {/* simplest version of fac */
128-
if (a < 0.0)
128+
if (!(a >= 0.0))
129129
return NAN;
130130
if (a > UINT_MAX)
131131
return INFINITY;
@@ -139,7 +139,7 @@ static double fac(double a) {/* simplest version of fac */
139139
return (double)result;
140140
}
141141
static double ncr(double n, double r) {
142-
if (n < 0.0 || r < 0.0 || n < r) return NAN;
142+
if (!(n >= 0.0) || !(r >= 0.0) || n < r) return NAN;
143143
if (n > UINT_MAX || r > UINT_MAX) return INFINITY;
144144
unsigned long int un = (unsigned int)(n), ur = (unsigned int)(r), i;
145145
unsigned long int result = 1;

UML Use Case Manage PowerPoint Ideas To Share A Product Launch Event

Comments
 (0)