Vector changes

This commit is contained in:
proshan3
2019-11-21 17:07:49 -05:00
parent d978f3c908
commit 7f3282d5a5
14 changed files with 4927 additions and 3941 deletions

View File

@@ -81,7 +81,7 @@ namespace Harp {
bool sign(d < 0);
bool inf(isinf(d)), zero(d == 0.0);
bool inf(std::isinf(d)), zero(d == 0.0);
int exp;
if (!inf && !zero) exp = floor(log2(fabs(d)));