jmejia8/bilevel-benchmark

Wrong SMD5

Closed this issue · 0 comments

f2 += ( x_l1[i+1] - x_l1[i]*x_l1[i] ) + pow(x_l1[i] - 1.0, 2);

Correct:
f2 += pow( x_l1[i+1] - x_l1[i]*x_l1[i], 2) + pow(x_l1[i] - 1.0, 2);