mirror of
https://github.com/boostorg/contract.git
synced 2026-02-26 16:42:19 +00:00
51 lines
1.8 KiB
C++
51 lines
1.8 KiB
C++
|
|
// Copyright (C) 2008-2016 Lorenzo Caminiti
|
|
// Distributed under the Boost Software License, Version 1.0 (see accompanying
|
|
// file LICENSE_1_0.txt or a copy at http://www.boost.org/LICENSE_1_0.txt).
|
|
// See: http://www.boost.org/doc/libs/release/libs/contract/doc/html/index.html
|
|
|
|
//[n1962_factorial
|
|
#include <boost/contract.hpp>
|
|
#include <cassert>
|
|
|
|
// Assertion complexity classified relative their function body complexity.
|
|
#define O_LESS_THAN_BODY 0
|
|
#define O_SAME_AS_BODY 1
|
|
#define O_GREATHER_THAN_BODY 2
|
|
#define COMPLEXITY_MAX O_SAME_AS_BODY
|
|
|
|
int factorial(int n ) {
|
|
int result;
|
|
boost::contract::check c = boost::contract::function()
|
|
.precondition([&] {
|
|
BOOST_CONTRACT_ASSERT(n >= 0); // Non-negative natural number.
|
|
BOOST_CONTRACT_ASSERT(n <= 12); // Max function input.
|
|
})
|
|
.postcondition([&] {
|
|
BOOST_CONTRACT_ASSERT(result >= 1);
|
|
if(n < 2) { // Select assertion.
|
|
BOOST_CONTRACT_ASSERT(result == 1);
|
|
} else {
|
|
// Following assertion introduce significant run-time overhead
|
|
// (same as the function body) so assertion can be selectively
|
|
// disabled by setting COMPLEXITY_MAX.
|
|
#if O_SAME_AS_BODY <= COMPLEXITY_MAX
|
|
// Assertions automatically disabled in other assertions.
|
|
// Therefore, this postcondition can recursively call the
|
|
// function without causing infinite recursion.
|
|
BOOST_CONTRACT_ASSERT(n * factorial(n - 1));
|
|
#endif
|
|
}
|
|
})
|
|
;
|
|
|
|
return n < 2 ? (result = 1) : (result = n * factorial(n - 1));
|
|
}
|
|
|
|
int main() {
|
|
assert(factorial(4) == 24);
|
|
return 0;
|
|
}
|
|
//]
|
|
|