1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
// Author: David Alexander
#pragma once
#include <xmmintrin.h>
#include <cfloat>
#include <ostream>
namespace ConsensusCore {
/// \brief A class representing a floating point number on the logarithmic scale
struct lfloat
{
float value;
lfloat() { value = -FLT_MAX; }
lfloat(float f) // NOLINT(runtime/explicit)
{
value = f;
}
lfloat& operator=(float f)
{
value = f;
return *this;
}
operator const float&() const { return value; }
operator float&() { return value; }
friend std::ostream& operator<<(std::ostream& out, const lfloat& f)
{
out << f.value;
return out;
}
};
template <typename T>
float Zero()
{
return T();
}
template <typename T>
__m128 Zero4()
{
return _mm_set_ps1(T());
}
}
|