Debug Vs. Release Correctness

Jul 2, 2012 at 7:52am
Hello everyone!

Just to make sure again, is the debug build better than the release build in terms of correctness? How about speed? I know that the former takes more size than the latter.

Thanks!
Jul 2, 2012 at 8:03am
If the speed is concern, the debug is slower than release build.

What do you mean by correctness?
Jul 2, 2012 at 8:06am
Gives expected/correct results out of the implemented algorithm.
Jul 2, 2012 at 9:45am
They're both correct in that sense. Debug has runtime checks and no optimisation so is slower.
Jul 2, 2012 at 10:31am
Some programs will work in debug mode but fail in release mode. If that is the case the program is not implemented correctly.
Topic archived. No new replies allowed.