This website works better with JavaScript.
Почетна
Помоћ
Пријавите Се
lolengine
/
lol
огледало од
https://github.com/lolengine/lol
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Издања
0
Вики
Activity
Преглед изворни кода
math: fix a bug in real::cbrt() that completely broke the function.
legacy
Sam Hocevar
пре 5 година
родитељ
90bf8a37d5
комит
5814dd4cf0
1 измењених фајлова
са
1 додато
и
1 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/math/real.cpp
+ 1
- 1
src/math/real.cpp
Прегледај датотеку
@@ -821,7 +821,7 @@ template<> real cbrt(real const &x)
real third = inverse(real::R_3());
for (int i = 1; i <= x.bigit_count(); i *= 2)
{
ret = third * (x / (ret * ret) + (ret
/
2));
ret = third * (x / (ret * ret) + (ret
*
2));
}
return ret;
Write
Preview
Loading…
Откажи
Сачувај