mlpack
2.0.1
|
Go to the source code of this file.
Macros | |
#define | BOOST_REQUIRE_GE(L, R) BOOST_REQUIRE_EQUAL( (L >= R), true ) |
#define | BOOST_REQUIRE_GT(L, R) BOOST_REQUIRE_EQUAL( (L > R), true ) |
#define | BOOST_REQUIRE_LE(L, R) BOOST_REQUIRE_EQUAL( (L <= R), true ) |
#define | BOOST_REQUIRE_LT(L, R) BOOST_REQUIRE_EQUAL( (L < R), true ) |
#define | BOOST_REQUIRE_NE(L, R) BOOST_REQUIRE_EQUAL( (L != R), true ) |
Ancient Boost.Test versions don't act how we expect. This file includes the things we need to fix that.
This file is part of mlpack 2.0.1.
mlpack is free software; you may redstribute it and/or modify it under the terms of the 3-clause BSD license. You should have received a copy of the 3-clause BSD license along with mlpack. If not, see http://www.opensource.org/licenses/BSD-3-Clause for more information.
Definition in file old_boost_test_definitions.hpp.
#define BOOST_REQUIRE_GE | ( | L, | |
R | |||
) | BOOST_REQUIRE_EQUAL( (L >= R), true ) |
Definition at line 28 of file old_boost_test_definitions.hpp.
#define BOOST_REQUIRE_GT | ( | L, | |
R | |||
) | BOOST_REQUIRE_EQUAL( (L > R), true ) |
Definition at line 40 of file old_boost_test_definitions.hpp.
#define BOOST_REQUIRE_LE | ( | L, | |
R | |||
) | BOOST_REQUIRE_EQUAL( (L <= R), true ) |
Definition at line 34 of file old_boost_test_definitions.hpp.
#define BOOST_REQUIRE_LT | ( | L, | |
R | |||
) | BOOST_REQUIRE_EQUAL( (L < R), true ) |
Definition at line 37 of file old_boost_test_definitions.hpp.
#define BOOST_REQUIRE_NE | ( | L, | |
R | |||
) | BOOST_REQUIRE_EQUAL( (L != R), true ) |
Definition at line 31 of file old_boost_test_definitions.hpp.