비베가 워낙 느리니,

비베 속도 개선에 대해서 알아보던 중이었는데,

이런 얘기가 있음.



Save intermediate results in mathematical calculations. For example, this code:

Xsquare = x * x Ysquare = y * y a = 2 * Xsquare + 3 * Ysquare b = 3 * Xsquare + 5 * Ysquare If a + b > 50 Then ...

is faster than this version:

If 2 * x * x + 3 * y * y + _ 3 * x * x + 5 * y * y > 50 _ Then ...



난 당연히 후자가 빠를줄 알았는데,

전자가 빠르다고 하는데,


다른 언어도 그런가여?