Server IP : 104.21.38.3 / Your IP : 172.71.152.58 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/algorithm/ |
Upload File : |
/* Copyright (c) Marshall Clow 2014. 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: 2 Dec 2014 mtc First version; power */ /// \file algorithm.hpp /// \brief Misc Algorithms /// \author Marshall Clow /// #ifndef BOOST_ALGORITHM_HPP #define BOOST_ALGORITHM_HPP #include <boost/utility/enable_if.hpp> // for boost::disable_if #include <boost/type_traits/is_integral.hpp> namespace boost { namespace algorithm { template <typename T> T identity_operation ( std::multiplies<T> ) { return T(1); } template <typename T> T identity_operation ( std::plus<T> ) { return T(0); } /// \fn power ( T x, Integer n ) /// \return the value "x" raised to the power "n" /// /// \param x The value to be exponentiated /// \param n The exponent (must be >= 0) /// // \remark Taken from Knuth, The Art of Computer Programming, Volume 2: // Seminumerical Algorithms, Section 4.6.3 template <typename T, typename Integer> typename boost::enable_if<boost::is_integral<Integer>, T>::type power (T x, Integer n) { T y = 1; // Should be "T y{1};" if (n == 0) return y; while (true) { if (n % 2 == 1) { y = x * y; if (n == 1) return y; } n = n / 2; x = x * x; } return y; } /// \fn power ( T x, Integer n, Operation op ) /// \return the value "x" raised to the power "n" /// using the operaton "op". /// /// \param x The value to be exponentiated /// \param n The exponent (must be >= 0) /// \param op The operation used /// // \remark Taken from Knuth, The Art of Computer Programming, Volume 2: // Seminumerical Algorithms, Section 4.6.3 template <typename T, typename Integer, typename Operation> typename boost::enable_if<boost::is_integral<Integer>, T>::type power (T x, Integer n, Operation op) { T y = identity_operation(op); if (n == 0) return y; while (true) { if (n % 2 == 1) { y = op(x, y); if (n == 1) return y; } n = n / 2; x = op(x, x); } return y; } }} #endif // BOOST_ALGORITHM_HPP