diff options
Diffstat (limited to 'include/cnn1986.c')
| -rw-r--r-- | include/cnn1986.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/cnn1986.c b/include/cnn1986.c index 039dddd..17d4e84 100644 --- a/include/cnn1986.c +++ b/include/cnn1986.c @@ -100,10 +100,12 @@ float cnn1986_evaluate_black_win(void) { } // Truncated Pade approximant of logistic function output = (12.0+output+50.0*output/(output*output+10.0))/24.0; -#ifndef DETERMINISTIC - RANDF; - output += fudge.f; -#endif +/* + * #ifndef DETERMINISTIC + * RANDF; + * output += fudge.f; + * #endif + */ if (output > 1.0) { return 1.0; } |
