forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmath_functions.cpp
34 lines (29 loc) · 999 Bytes
/
math_functions.cpp
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
#include "catch/catch.hpp"
#include <random>
#include <cmath>
#include "cata_utility.h"
TEST_CASE( "fast_floor", "[math]" )
{
REQUIRE( fast_floor( -2.0 ) == -2 );
REQUIRE( fast_floor( -1.9 ) == -2 );
REQUIRE( fast_floor( -1.1 ) == -2 );
REQUIRE( fast_floor( -1.0 ) == -1 );
REQUIRE( fast_floor( -0.9 ) == -1 );
REQUIRE( fast_floor( -0.1 ) == -1 );
REQUIRE( fast_floor( 0.0 ) == 0 );
REQUIRE( fast_floor( 0.1 ) == 0 );
REQUIRE( fast_floor( 0.9 ) == 0 );
REQUIRE( fast_floor( 1.0 ) == 1 );
REQUIRE( fast_floor( 1.1 ) == 1 );
REQUIRE( fast_floor( 1.9 ) == 1 );
REQUIRE( fast_floor( 2.0 ) == 2 );
REQUIRE( fast_floor( 2.1 ) == 2 );
REQUIRE( fast_floor( 2.9 ) == 2 );
std::random_device rd;
std::mt19937 mt( rd() );
std::uniform_real_distribution<double> dist( -10.0, 10.0 );
for( size_t i = 0; i != 1000; ++i ) {
double val = dist( mt );
REQUIRE( fast_floor( val ) == std::floor( val ) );
}
}