hi
in normal programming my problem would be considered a bug of sorts / unexpected outcome
the code and / or data is such that it has an unpredicted outcome
at this point i am encountering something like that
if i add a breakpoint to a certain point, that alone changes the result
and if i change the test criteria, it changes the result
2 points cross, so the distance between them should be 0 or close to zero
this i know for a fact
if i compare the distance and branch off that, it will not always pick this up - ie correctly branch on the fact that the distance is close to zero
and when i add a breakpoint, it trips (as expected) with a distance of 0.2 where i compare for results less than 5 or 10
so clearly the data allows the case (distance almost zero) and clearly the code is at least able to detect this with the help of a breakpoint
how do you debug such a phenomenon and what might be the cause
either it is a bug that i am not picking up or the compiler has a hard time to properly compile my blueprint as code
otherwise it is a pity that i cant insert a “permanent breakpoint”
thanks