Effective implementation of algorithms (Master Thesis)
Effective and error-free implementation of algorithms
|
#include "utils/preconditions/preconditions.h"
#include "utils/static_assert/static_assert.h"
#include <stdexcept>
Go to the source code of this file.
Namespaces | |
namespace | math |
namespace | math::binsearch |
Functions | |
template<typename T > | |
T | math::binsearch::range_middle (T left, T right) |
template<typename ValueType , typename SizeType > | |
SizeType | math::binsearch::lower_bound (ValueType pole[], SizeType left, SizeType right, ValueType value) |
template<typename ValueType , typename SizeType > | |
SizeType | math::binsearch::upper_bound (ValueType pole[], SizeType left, SizeType right, ValueType value) |