Files
contract/example/features/check.cpp
Lorenzo Caminiti 8aaf2f41b2 updated gh-pages
2017-09-19 21:30:39 -07:00

47 lines
1.2 KiB
C++

// Copyright (C) 2008-2017 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
#include <boost/contract.hpp>
int gcd(int const a, int const b) {
int result;
boost::contract::check c = boost::contract::function()
.precondition([&] {
BOOST_CONTRACT_ASSERT(a > 0);
BOOST_CONTRACT_ASSERT(b > 0);
})
.postcondition([&] {
BOOST_CONTRACT_ASSERT(result <= a);
BOOST_CONTRACT_ASSERT(result <= b);
})
;
int x = a, y = b;
while(x != y) {
if(x > y) x = x - y;
else y = y - x;
}
return result = x;
}
int main() {
//[check_class
boost::contract::check c = [&] { // Implementation checks via functor.
BOOST_CONTRACT_ASSERT(gcd(12, 28) == 4);
BOOST_CONTRACT_ASSERT(gcd(4, 14) == 2);
};
//]
//[check_macro
// Implementation checks via macro (disable run- and compile-time overhead).
BOOST_CONTRACT_CHECK(gcd(12, 28) == 4);
BOOST_CONTRACT_CHECK(gcd(4, 14) == 2);
//]
return 0;
}