New math.h

First draft.
LOG templates
This commit is contained in:
jwellbelove 2014-10-20 13:48:49 +01:00
parent de8a974d70
commit a174038379

102
math.h Normal file
View File

@ -0,0 +1,102 @@
///\file
/******************************************************************************
The MIT License(MIT)
Embedded Template Library.
Copyright(c) 2014 jwellbelove
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions :
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#ifndef __etl_math__
#define __etl_math__
#include <cstddef>
namespace etl
{
//***************************************************************************
/// The base generic Log template.
/// Defines 'value' as the log of the number at the specified base.
/// The result is rounded down to the next integer.
///\tparam N The number to find the log of.
///\tparam BASE The base of the log.
//***************************************************************************
template <const size_t N, const size_t BASE>
struct Log
{
enum Value
{
// Recursive definition.
value = (N >= BASE) ? 1 + Log<N / BASE, BASE>::value : 0
};
};
//***************************************************************************
/// Specialisation for N = 1
//***************************************************************************
template <const size_t BASE>
struct Log<1, BASE>
{
enum Value
{
value = 0
};
};
//***************************************************************************
/// Specialisation for N = 0
//***************************************************************************
template <const size_t BASE>
struct Log<0, BASE>
{
enum Value
{
value = 0
};
};
//***************************************************************************
/// The specialisation for base 2 logs.
//***************************************************************************
template <const size_t N>
struct Log2
{
enum Value
{
value = Log<N, 2>::value
};
};
//***************************************************************************
/// The specialisation for base 10 logs.
//***************************************************************************
template <const size_t N>
struct Log10
{
enum Value
{
value = Log<N, 10>::value
};
};
}
#endif