fix initial position in alryslib.c

This commit is contained in:
Pavel 2021-10-20 22:35:59 +02:00
parent d6db1f0124
commit 634de79c7d
1 changed files with 2 additions and 2 deletions

View File

@ -189,8 +189,8 @@ double score(double *steps, int size)
y = steps[4];
b = steps[5];
position[0] = x;
position[1] = y;
position[0] = x + a * 1e-14;
position[1] = y + b * 1e-14;
position[2] = 0.0;
state.x = x + a * 1e-14;