Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r54414 - in sandbox: boost/algorithm libs/algorithm/clamp libs/algorithm/clamp/test
From: marshall_at_[hidden]
Date: 2009-06-27 15:53:56


Author: marshall
Date: 2009-06-27 15:53:55 EDT (Sat, 27 Jun 2009)
New Revision: 54414
URL: http://svn.boost.org/trac/boost/changeset/54414

Log:
Intial checkin of 'clamp' algorithm
Added:
   sandbox/boost/algorithm/clamp.hpp (contents, props changed)
   sandbox/libs/algorithm/clamp/
   sandbox/libs/algorithm/clamp/test/
   sandbox/libs/algorithm/clamp/test/Jamfile.v2 (contents, props changed)
   sandbox/libs/algorithm/clamp/test/clamp_test.cpp (contents, props changed)

Added: sandbox/boost/algorithm/clamp.hpp
==============================================================================
--- (empty file)
+++ sandbox/boost/algorithm/clamp.hpp 2009-06-27 15:53:55 EDT (Sat, 27 Jun 2009)
@@ -0,0 +1,42 @@
+/*
+ Copyright (c) Marshall Clow 2008.
+
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+
+ Revision history:
+ 27 June 2009 mtc First version
+
+*/
+
+/// \file clamp.hpp
+/// \brief Clamp algorithm
+/// \author Marshall Clow
+///
+/// Suggested by olafvdspek in https://svn.boost.org/trac/boost/ticket/3215
+
+#ifndef BOOST_ALGORITHM_CLAMP_HPP
+#define BOOST_ALGORITHM_CLAMP_HPP
+
+namespace boost { namespace algorithm {
+
+/// \fn clamp ( V lo, V hi, V val )
+/// \brief Returns the value "val" brought into the range [ lo, hi ]
+/// If the value is greater than "hi", return hi. If the value is
+/// less than "lo", return lo. Otherwise, return the original value.
+///
+/// \param lo The low point of the range to be clamped to
+/// \param hi The high point of the range to be clamped to
+/// \param val The value to be clamped
+///
+ template<typename V>
+ V clamp ( V lo, V hi, V val )
+ {
+ return val >= hi ? hi : val <= lo ? lo : val;
+// Alternately,
+// return std::max ( std::min ( val, hi ), lo );
+ }
+
+}}
+
+#endif // BOOST_ALGORITHM_CLAMP_HPP

Added: sandbox/libs/algorithm/clamp/test/Jamfile.v2
==============================================================================
--- (empty file)
+++ sandbox/libs/algorithm/clamp/test/Jamfile.v2 2009-06-27 15:53:55 EDT (Sat, 27 Jun 2009)
@@ -0,0 +1,18 @@
+# Boost.All Library test Jamfile
+#
+# Copyright (C) 2009 Jesse Williamson
+#
+# Use, modification, and distribution is subject to the Boost Software
+# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+#
+
+import testing ;
+
+{
+ test-suite algorithm/clamp:
+ : [ run clamp_test.cpp
+ : : : : clamp ]
+ ;
+}
+

Added: sandbox/libs/algorithm/clamp/test/clamp_test.cpp
==============================================================================
--- (empty file)
+++ sandbox/libs/algorithm/clamp/test/clamp_test.cpp 2009-06-27 15:53:55 EDT (Sat, 27 Jun 2009)
@@ -0,0 +1,114 @@
+// (C) Copyright Jesse Williamson 2009
+// Use, modification and distribution are subject to the
+// Boost Software License, Version 1.0. (See accompanying file
+// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+
+#include <iostream>
+
+#include <boost/config.hpp>
+#include <boost/algorithm/clamp.hpp>
+
+#include <boost/test/included/test_exec_monitor.hpp>
+
+namespace ba = boost::algorithm;
+
+void test_ints()
+{
+
+// Inside the range, equal to the endpoints, and outside the endpoints.
+ BOOST_CHECK_EQUAL ( 3, ba::clamp ( 1, 10, 3 ));
+ BOOST_CHECK_EQUAL ( 1, ba::clamp ( 1, 10, 1 ));
+ BOOST_CHECK_EQUAL ( 1, ba::clamp ( 1, 10, 0 ));
+ BOOST_CHECK_EQUAL ( 10, ba::clamp ( 1, 10, 10 ));
+ BOOST_CHECK_EQUAL ( 10, ba::clamp ( 1, 10, 11 ));
+
+// Negative numbers
+ BOOST_CHECK_EQUAL ( -3, ba::clamp ( -10, -1, -3 ));
+ BOOST_CHECK_EQUAL ( -1, ba::clamp ( -10, -1, -1 ));
+ BOOST_CHECK_EQUAL ( -1, ba::clamp ( -10, -1, 0 ));
+ BOOST_CHECK_EQUAL ( -10, ba::clamp ( -10, -1, -10 ));
+ BOOST_CHECK_EQUAL ( -10, ba::clamp ( -10, -1, -11 ));
+
+// Mixed positive and negative numbers
+ BOOST_CHECK_EQUAL ( 5, ba::clamp ( -10, 10, 5 ));
+ BOOST_CHECK_EQUAL ( -10, ba::clamp ( -10, 10, -10 ));
+ BOOST_CHECK_EQUAL ( -10, ba::clamp ( -10, 10, -15 ));
+ BOOST_CHECK_EQUAL ( 10, ba::clamp ( -10, 10, 10 ));
+ BOOST_CHECK_EQUAL ( 10, ba::clamp ( -10, 10, 15 ));
+
+// Unsigned
+ BOOST_CHECK_EQUAL ( 5U, ba::clamp ( 1U, 10U, 5U ));
+ BOOST_CHECK_EQUAL ( 1U, ba::clamp ( 1U, 10U, 1U ));
+ BOOST_CHECK_EQUAL ( 1U, ba::clamp ( 1U, 10U, 0U ));
+ BOOST_CHECK_EQUAL ( 10U, ba::clamp ( 1U, 10U, 10U ));
+ BOOST_CHECK_EQUAL ( 10U, ba::clamp ( 1U, 10U, 15U ));
+}
+
+
+void test_floats()
+{
+
+// Inside the range, equal to the endpoints, and outside the endpoints.
+ BOOST_CHECK_EQUAL ( 3.0, ba::clamp ( 1.0, 10.0, 3.0 ));
+ BOOST_CHECK_EQUAL ( 1.0, ba::clamp ( 1.0, 10.0, 1.0 ));
+ BOOST_CHECK_EQUAL ( 1.0, ba::clamp ( 1.0, 10.0, 0.0 ));
+ BOOST_CHECK_EQUAL ( 10.0, ba::clamp ( 1.0, 10.0, 10.0 ));
+ BOOST_CHECK_EQUAL ( 10.0, ba::clamp ( 1.0, 10.0, 11.0 ));
+
+// Negative numbers
+ BOOST_CHECK_EQUAL ( -3.f, ba::clamp ( -10.f, -1.f, -3.f ));
+ BOOST_CHECK_EQUAL ( -1.f, ba::clamp ( -10.f, -1.f, -1.f ));
+ BOOST_CHECK_EQUAL ( -1.f, ba::clamp ( -10.f, -1.f, 0.f ));
+ BOOST_CHECK_EQUAL ( -10.f, ba::clamp ( -10.f, -1.f, -10.f ));
+ BOOST_CHECK_EQUAL ( -10.f, ba::clamp ( -10.f, -1.f, -11.f ));
+
+// Mixed positive and negative numbers
+ BOOST_CHECK_EQUAL ( 5.f, ba::clamp ( -10.f, 10.f, 5.f ));
+ BOOST_CHECK_EQUAL ( -10.f, ba::clamp ( -10.f, 10.f, -10.f ));
+ BOOST_CHECK_EQUAL ( -10.f, ba::clamp ( -10.f, 10.f, -15.f ));
+ BOOST_CHECK_EQUAL ( 10.f, ba::clamp ( -10.f, 10.f, 10.f ));
+ BOOST_CHECK_EQUAL ( 10.f, ba::clamp ( -10.f, 10.f, 15.f ));
+
+}
+
+class custom {
+public:
+ custom ( int x ) : v(x) {}
+ custom ( const custom &rhs ) : v(rhs.v) {}
+ ~custom () {}
+ custom & operator = ( const custom &rhs ) { v = rhs.v; return *this; }
+
+ bool operator < ( const custom &rhs ) const { return v < rhs.v; }
+ bool operator == ( const custom &rhs ) const { return v == rhs.v; }
+ bool operator <= ( const custom &rhs ) const { return v <= rhs.v; }
+ bool operator >= ( const custom &rhs ) const { return v >= rhs.v; }
+
+ std::ostream & print ( std::ostream &os ) const { return os << v; }
+
+private:
+ int v;
+ };
+
+std::ostream & operator << ( std::ostream & os, const custom &x ) { return x.print ( os ); }
+
+void test_custom()
+{
+
+// Inside the range, equal to the endpoints, and outside the endpoints.
+ BOOST_CHECK_EQUAL ( custom( 3), ba::clamp ( custom(1), custom(10), custom( 3)));
+ BOOST_CHECK_EQUAL ( custom( 1), ba::clamp ( custom(1), custom(10), custom( 1)));
+ BOOST_CHECK_EQUAL ( custom( 1), ba::clamp ( custom(1), custom(10), custom( 0)));
+ BOOST_CHECK_EQUAL ( custom(10), ba::clamp ( custom(1), custom(10), custom(10)));
+ BOOST_CHECK_EQUAL ( custom(10), ba::clamp ( custom(1), custom(10), custom(11)));
+
+// Fail!!
+// BOOST_CHECK_EQUAL ( custom(1), ba::clamp ( custom(1), custom(10), custom(11)));
+}
+
+int test_main( int , char* [] )
+{
+ test_ints ();
+ test_floats ();
+ test_custom ();
+ return 0;
+}


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk