修复一个导致崩溃的问题

This commit is contained in:
Huoji's
2025-04-20 23:43:54 +08:00
parent 143a336c8b
commit 8cfd24ab43
7 changed files with 66 additions and 11 deletions

View File

@@ -1,5 +1,7 @@
#include <math.h>
#include <string.h>
#pragma optimize("", off)
double sigmoid(double x) {
if (x < 0.0) {
double z = exp(x);
@@ -6621,3 +6623,4 @@ double score(double* input) {
var99));
return var100;
}
#pragma optimize("", on)