From 24cf24b55785a7f491e871a3a9f38cefed810875 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Fri, 28 Apr 2023 20:03:18 +0000 Subject: [PATCH] Documentation for 4b740d464c8e8898162181b615efe7884d1980be --- da/d23/eulers__totient__function_8cpp.html | 117 +++++++++++------- da/d23/eulers__totient__function_8cpp.js | 3 +- ...ddf1224851353fc92bfbff6f499fa97_cgraph.map | 3 +- ...ddf1224851353fc92bfbff6f499fa97_cgraph.md5 | 2 +- ...ddf1224851353fc92bfbff6f499fa97_cgraph.svg | 29 +++-- ...8dca7b867074164d5f45b0f3851269d_cgraph.map | 4 + ...8dca7b867074164d5f45b0f3851269d_cgraph.md5 | 1 + ...8dca7b867074164d5f45b0f3851269d_cgraph.svg | 36 ++++++ dd/d47/namespacemath.html | 41 ++++++ dd/d47/namespacemath.js | 1 + .../eulers__totient__function_8cpp__incl.map | 6 +- .../eulers__totient__function_8cpp__incl.md5 | 2 +- .../eulers__totient__function_8cpp__incl.svg | 28 ++--- dir_296d53ceaeaa7e099814a6def439fe8a.html | 2 +- files.html | 2 +- globals_func_p.html | 1 - globals_func_t.html | 2 +- globals_p.html | 1 - globals_t.html | 2 +- namespacemembers.html | 1 + namespacemembers_func.html | 1 + navtreedata.js | 8 +- navtreeindex0.js | 22 ++-- navtreeindex1.js | 14 +-- navtreeindex10.js | 6 +- navtreeindex11.js | 62 +++++----- navtreeindex12.js | 20 +-- navtreeindex13.js | 10 +- navtreeindex2.js | 12 +- navtreeindex3.js | 4 +- navtreeindex4.js | 4 +- navtreeindex5.js | 10 +- navtreeindex6.js | 30 ++--- navtreeindex7.js | 28 ++--- navtreeindex8.js | 20 +-- navtreeindex9.js | 16 +-- search/all_11.js | 2 +- search/all_15.js | 6 +- search/functions_10.js | 2 +- search/functions_14.js | 2 +- 40 files changed, 344 insertions(+), 219 deletions(-) create mode 100644 da/d23/eulers__totient__function_8cpp_aa8dca7b867074164d5f45b0f3851269d_cgraph.map create mode 100644 da/d23/eulers__totient__function_8cpp_aa8dca7b867074164d5f45b0f3851269d_cgraph.md5 create mode 100644 da/d23/eulers__totient__function_8cpp_aa8dca7b867074164d5f45b0f3851269d_cgraph.svg diff --git a/da/d23/eulers__totient__function_8cpp.html b/da/d23/eulers__totient__function_8cpp.html index 83355afff..2e7ecdb89 100644 --- a/da/d23/eulers__totient__function_8cpp.html +++ b/da/d23/eulers__totient__function_8cpp.html @@ -98,33 +98,44 @@ $(document).ready(function(){initNavTree('da/d23/eulers__totient__function_8cpp.
C++ Program to find Euler's Totient function. +
Implementation of Euler's Totient @description Euler Totient Function is also known as phi function. More...
-#include <cstdlib>#include <iostream>#include <iostream>#include <cassert>+Namespaces | |
| namespace | math |
| for IO operations | |
Functions | |
| uint64_t | phiFunction (uint64_t n) |
| uint64_t | math::phiFunction (uint64_t n) |
| Function to calculate Euler's Totient. | |
| static void | test () |
| Self-test implementations. | |
| int | main (int argc, char *argv[]) |
| Main function. | |
C++ Program to find Euler's Totient function.
-Euler Totient Function is also known as phi function.
+
Implementation of Euler's Totient @description Euler Totient Function is also known as phi function.
+\[\phi(n) = \phi\left({p_1}^{a_1}\right)\cdot\phi\left({p_2}^{a_2}\right)\ldots\]
@@ -143,7 +154,8 @@ Some known values are:Main function.
-| argc | commandline argument count (ignored) |
| argv | commandline array of arguments (ignored) |
|
+ +static | +
Function to caculate Euler's totient phi
-Self-test implementations.
+| uint64_t math::phiFunction | +( | +uint64_t | +n | ) | ++ |
Function to calculate Euler's Totient.
+| n | the number to find the Euler's Totient of |