Documentation for 512efd1861
@@ -105,12 +105,13 @@ $(function(){initNavTree('d9/d89/fibonacci_8cpp.html','../../'); initResizable(t
|
||||
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#namespaces">Namespaces</a> |
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle"><div class="title">fibonacci.cpp File Reference</div></div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
|
||||
<p>Generate fibonacci sequence.
|
||||
<p>n-th <a href="https://en.wikipedia.org/wiki/Fibonacci_sequence" target="_blank">Fibonacci number</a>.
|
||||
<a href="#details">More...</a></p>
|
||||
<div class="textblock"><code>#include <cassert></code><br />
|
||||
<code>#include <iostream></code><br />
|
||||
@@ -120,61 +121,69 @@ Include dependency graph for fibonacci.cpp:</div>
|
||||
<div class="center"><iframe scrolling="no" frameborder="0" src="../../df/d0f/fibonacci_8cpp__incl.svg" width="171" height="111"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
|
||||
</div>
|
||||
</div><table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="namespaces" name="namespaces"></a>
|
||||
Namespaces</h2></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../dd/d47/namespacemath.html">math</a></td></tr>
|
||||
<tr class="memdesc:dd/d47/namespacemath"><td class="mdescLeft"> </td><td class="mdescRight">for IO operations <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../df/d76/namespacefibonacci.html">fibonacci</a></td></tr>
|
||||
<tr class="memdesc:df/d76/namespacefibonacci"><td class="mdescLeft"> </td><td class="mdescRight">Functions for Fibonacci sequence. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table><table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="func-members" name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:aaf94f3212385cff0a5f19ff6b0cce8e7" id="r_aaf94f3212385cff0a5f19ff6b0cce8e7"><td class="memItemLeft" align="right" valign="top">uint64_t </td><td class="memItemRight" valign="bottom"><a class="el" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a> (uint64_t n)</td></tr>
|
||||
<tr class="separator:aaf94f3212385cff0a5f19ff6b0cce8e7"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:aeaaf5439cb29de4630c7dff2fd914b28" id="r_aeaaf5439cb29de4630c7dff2fd914b28"><td class="memItemLeft" align="right" valign="top">uint64_t </td><td class="memItemRight" valign="bottom"><a class="el" href="#aeaaf5439cb29de4630c7dff2fd914b28">math::fibonacci::fibonacci</a> (uint64_t n)</td></tr>
|
||||
<tr class="memdesc:aeaaf5439cb29de4630c7dff2fd914b28"><td class="mdescLeft"> </td><td class="mdescRight">Function to compute the n-th Fibonacci number. <br /></td></tr>
|
||||
<tr class="separator:aeaaf5439cb29de4630c7dff2fd914b28"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:aa8dca7b867074164d5f45b0f3851269d" id="r_aa8dca7b867074164d5f45b0f3851269d"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="#aa8dca7b867074164d5f45b0f3851269d">test</a> ()</td></tr>
|
||||
<tr class="memdesc:aa8dca7b867074164d5f45b0f3851269d"><td class="mdescLeft"> </td><td class="mdescRight">Self-test implementation. <br /></td></tr>
|
||||
<tr class="separator:aa8dca7b867074164d5f45b0f3851269d"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:ae66f6b31b5ad750f1fe042a706a4e3d4" id="r_ae66f6b31b5ad750f1fe042a706a4e3d4"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="#ae66f6b31b5ad750f1fe042a706a4e3d4">main</a> ()</td></tr>
|
||||
<tr class="memdesc:ae66f6b31b5ad750f1fe042a706a4e3d4"><td class="mdescLeft"> </td><td class="mdescRight">Main function. <br /></td></tr>
|
||||
<tr class="separator:ae66f6b31b5ad750f1fe042a706a4e3d4"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>Generate fibonacci sequence. </p>
|
||||
<p>Calculate the the value on Fibonacci's sequence given an integer as input. </p><p class="formulaDsp">
|
||||
<div class="textblock"><p>n-th <a href="https://en.wikipedia.org/wiki/Fibonacci_sequence" target="_blank">Fibonacci number</a>. </p>
|
||||
<p>Naive recursive implementation to calculate the n-th Fibonacci number. </p><p class="formulaDsp">
|
||||
\[\text{fib}(n) = \text{fib}(n-1) + \text{fib}(n-2)\]
|
||||
</p>
|
||||
<dl class="section see"><dt>See also</dt><dd><a class="el" href="../../de/de4/fibonacci__large_8cpp.html" title="Computes N^th Fibonacci number given as input argument. Uses custom build arbitrary integers library ...">fibonacci_large.cpp</a>, <a class="el" href="../../d4/d32/fibonacci__fast_8cpp.html" title="Faster computation of Fibonacci series.">fibonacci_fast.cpp</a>, <a class="el" href="../../de/d47/string__fibonacci_8cpp.html" title="This Programme returns the Nth fibonacci as a string.">string_fibonacci.cpp</a> </dd></dl>
|
||||
</div><h2 class="groupheader">Function Documentation</h2>
|
||||
<a id="aaf94f3212385cff0a5f19ff6b0cce8e7" name="aaf94f3212385cff0a5f19ff6b0cce8e7"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#aaf94f3212385cff0a5f19ff6b0cce8e7">◆ </a></span>fibonacci()</h2>
|
||||
<a id="aeaaf5439cb29de4630c7dff2fd914b28" name="aeaaf5439cb29de4630c7dff2fd914b28"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#aeaaf5439cb29de4630c7dff2fd914b28">◆ </a></span>fibonacci()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">uint64_t fibonacci </td>
|
||||
<td class="memname">uint64_t math::fibonacci::fibonacci </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">uint64_t</td> <td class="paramname"><span class="paramname"><em>n</em></span></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
<p>Recursively compute sequences </p><dl class="params"><dt>Parameters</dt><dd>
|
||||
|
||||
<p>Function to compute the n-th Fibonacci number. </p>
|
||||
<dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">n</td><td>input </td></tr>
|
||||
<tr><td class="paramname">n</td><td>the index of the Fibonacci number </td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="section return"><dt>Returns</dt><dd>n-th element of the Fbinacci's sequence </dd></dl>
|
||||
<div class="fragment"><div class="line"><span class="lineno"> 19</span> {</div>
|
||||
<div class="line"><span class="lineno"> 20</span> <span class="comment">/* If the input is 0 or 1 just return the same</span></div>
|
||||
<div class="line"><span class="lineno"> 21</span><span class="comment"> This will set the first 2 values of the sequence */</span></div>
|
||||
<div class="line"><span class="lineno"> 22</span> <span class="keywordflow">if</span> (n <= 1) {</div>
|
||||
<div class="line"><span class="lineno"> 23</span> <span class="keywordflow">return</span> n;</div>
|
||||
<div class="line"><span class="lineno"> 24</span> }</div>
|
||||
<div class="line"><span class="lineno"> 25</span> </div>
|
||||
<div class="line"><span class="lineno"> 26</span> <span class="comment">/* Add the last 2 values of the sequence to get next */</span></div>
|
||||
<div class="line"><span class="lineno"> 27</span> <span class="keywordflow">return</span> <a class="code hl_function" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a>(n - 1) + <a class="code hl_function" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a>(n - 2);</div>
|
||||
<div class="line"><span class="lineno"> 28</span>}</div>
|
||||
<div class="ttc" id="afibonacci_8cpp_html_aaf94f3212385cff0a5f19ff6b0cce8e7"><div class="ttname"><a href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a></div><div class="ttdeci">uint64_t fibonacci(uint64_t n)</div><div class="ttdef"><b>Definition</b> fibonacci.cpp:19</div></div>
|
||||
</div><!-- fragment --><div class="dynheader">
|
||||
Here is the call graph for this function:</div>
|
||||
<div class="dyncontent">
|
||||
<div class="center"><iframe scrolling="no" frameborder="0" src="../../d9/d89/fibonacci_8cpp_aaf94f3212385cff0a5f19ff6b0cce8e7_cgraph.svg" width="84" height="60"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
|
||||
</div>
|
||||
|
||||
<dl class="section return"><dt>Returns</dt><dd>n-th element of the Fibonacci's sequence </dd></dl>
|
||||
<div class="fragment"><div class="line"><span class="lineno"> 30</span> {</div>
|
||||
<div class="line"><span class="lineno"> 31</span> <span class="comment">// If the input is 0 or 1 just return the same (Base Case)</span></div>
|
||||
<div class="line"><span class="lineno"> 32</span> <span class="comment">// This will set the first 2 values of the sequence</span></div>
|
||||
<div class="line"><span class="lineno"> 33</span> <span class="keywordflow">if</span> (n <= 1) {</div>
|
||||
<div class="line"><span class="lineno"> 34</span> <span class="keywordflow">return</span> n;</div>
|
||||
<div class="line"><span class="lineno"> 35</span> }</div>
|
||||
<div class="line"><span class="lineno"> 36</span> </div>
|
||||
<div class="line"><span class="lineno"> 37</span> <span class="comment">// Add the preceding 2 values of the sequence to get next</span></div>
|
||||
<div class="line"><span class="lineno"> 38</span> <span class="keywordflow">return</span> <a class="code hl_namespace" href="../../df/d76/namespacefibonacci.html">fibonacci</a>(n - 1) + <a class="code hl_namespace" href="../../df/d76/namespacefibonacci.html">fibonacci</a>(n - 2);</div>
|
||||
<div class="line"><span class="lineno"> 39</span>}</div>
|
||||
<div class="ttc" id="anamespacefibonacci_html"><div class="ttname"><a href="../../df/d76/namespacefibonacci.html">fibonacci</a></div><div class="ttdoc">Functions for Fibonacci sequence.</div></div>
|
||||
</div><!-- fragment -->
|
||||
</div>
|
||||
</div>
|
||||
<a id="ae66f6b31b5ad750f1fe042a706a4e3d4" name="ae66f6b31b5ad750f1fe042a706a4e3d4"></a>
|
||||
@@ -193,21 +202,16 @@ Here is the call graph for this function:</div>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Main function. </p>
|
||||
<dl class="section return"><dt>Returns</dt><dd>0 on exit </dd></dl>
|
||||
<div class="fragment"><div class="line"><span class="lineno"> 62</span> {</div>
|
||||
<div class="line"><span class="lineno"> 63</span> <a class="code hl_function" href="#aa8dca7b867074164d5f45b0f3851269d">test</a>();</div>
|
||||
<div class="line"><span class="lineno"> 64</span> <span class="keywordtype">int</span> n = 0;</div>
|
||||
<div class="line"><span class="lineno"> 65</span> <a class="code hl_classRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_istream.html">std::cin</a> >> n;</div>
|
||||
<div class="line"><span class="lineno"> 66</span> assert(n >= 0);</div>
|
||||
<div class="line"><span class="lineno"> 67</span> <a class="code hl_classRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << <span class="stringliteral">"F("</span> << n << <span class="stringliteral">")= "</span> << <a class="code hl_function" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a>(n) << <a class="code hl_functionRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/manip/endl.html">std::endl</a>;</div>
|
||||
<div class="line"><span class="lineno"> 68</span>}</div>
|
||||
<div class="ttc" id="abasic_istream_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/io/basic_istream.html">std::cin</a></div></div>
|
||||
<div class="ttc" id="abasic_ostream_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a></div></div>
|
||||
<div class="ttc" id="aendl_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/io/manip/endl.html">std::endl</a></div><div class="ttdeci">T endl(T... args)</div></div>
|
||||
<div class="ttc" id="afibonacci_8cpp_html_aa8dca7b867074164d5f45b0f3851269d"><div class="ttname"><a href="#aa8dca7b867074164d5f45b0f3851269d">test</a></div><div class="ttdeci">static void test()</div><div class="ttdef"><b>Definition</b> fibonacci.cpp:35</div></div>
|
||||
<div class="line"><span class="lineno"> 63</span> <a class="code hl_function" href="#aa8dca7b867074164d5f45b0f3851269d">test</a>(); <span class="comment">// run self-test implementations</span></div>
|
||||
<div class="line"><span class="lineno"> 64</span> <span class="keywordflow">return</span> 0;</div>
|
||||
<div class="line"><span class="lineno"> 65</span>}</div>
|
||||
<div class="ttc" id="afibonacci_8cpp_html_aa8dca7b867074164d5f45b0f3851269d"><div class="ttname"><a href="#aa8dca7b867074164d5f45b0f3851269d">test</a></div><div class="ttdeci">static void test()</div><div class="ttdoc">Self-test implementation.</div><div class="ttdef"><b>Definition</b> fibonacci.cpp:47</div></div>
|
||||
</div><!-- fragment --><div class="dynheader">
|
||||
Here is the call graph for this function:</div>
|
||||
<div class="dyncontent">
|
||||
<div class="center"><iframe scrolling="no" frameborder="0" src="../../d9/d89/fibonacci_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg" width="274" height="116"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
|
||||
<div class="center"><iframe scrolling="no" frameborder="0" src="../../d9/d89/fibonacci_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg" width="152" height="36"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -234,38 +238,21 @@ Here is the call graph for this function:</div>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
<p>Function for testing the <a class="el" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci()</a> function with a few test cases and assert statement. </p><dl class="section return"><dt>Returns</dt><dd><code>void</code> </dd></dl>
|
||||
<div class="fragment"><div class="line"><span class="lineno"> 35</span> {</div>
|
||||
<div class="line"><span class="lineno"> 36</span> uint64_t test_case_1 = <a class="code hl_function" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a>(0);</div>
|
||||
<div class="line"><span class="lineno"> 37</span> assert(test_case_1 == 0);</div>
|
||||
<div class="line"><span class="lineno"> 38</span> <a class="code hl_classRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << <span class="stringliteral">"Passed Test 1!"</span> << <a class="code hl_functionRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/manip/endl.html">std::endl</a>;</div>
|
||||
<div class="line"><span class="lineno"> 39</span> </div>
|
||||
<div class="line"><span class="lineno"> 40</span> uint64_t test_case_2 = <a class="code hl_function" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a>(1);</div>
|
||||
<div class="line"><span class="lineno"> 41</span> assert(test_case_2 == 1);</div>
|
||||
<div class="line"><span class="lineno"> 42</span> <a class="code hl_classRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << <span class="stringliteral">"Passed Test 2!"</span> << <a class="code hl_functionRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/manip/endl.html">std::endl</a>;</div>
|
||||
<div class="line"><span class="lineno"> 43</span> </div>
|
||||
<div class="line"><span class="lineno"> 44</span> uint64_t test_case_3 = <a class="code hl_function" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a>(2);</div>
|
||||
<div class="line"><span class="lineno"> 45</span> assert(test_case_3 == 1);</div>
|
||||
<div class="line"><span class="lineno"> 46</span> <a class="code hl_classRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << <span class="stringliteral">"Passed Test 3!"</span> << <a class="code hl_functionRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/manip/endl.html">std::endl</a>;</div>
|
||||
<div class="line"><span class="lineno"> 47</span> </div>
|
||||
<div class="line"><span class="lineno"> 48</span> uint64_t test_case_4 = <a class="code hl_function" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a>(3);</div>
|
||||
<div class="line"><span class="lineno"> 49</span> assert(test_case_4 == 2);</div>
|
||||
<div class="line"><span class="lineno"> 50</span> <a class="code hl_classRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << <span class="stringliteral">"Passed Test 4!"</span> << <a class="code hl_functionRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/manip/endl.html">std::endl</a>;</div>
|
||||
<div class="line"><span class="lineno"> 51</span> </div>
|
||||
<div class="line"><span class="lineno"> 52</span> uint64_t test_case_5 = <a class="code hl_function" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a>(4);</div>
|
||||
<div class="line"><span class="lineno"> 53</span> assert(test_case_5 == 3);</div>
|
||||
<div class="line"><span class="lineno"> 54</span> <a class="code hl_classRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << <span class="stringliteral">"Passed Test 5!"</span> << <a class="code hl_functionRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/manip/endl.html">std::endl</a>;</div>
|
||||
<div class="line"><span class="lineno"> 55</span> </div>
|
||||
<div class="line"><span class="lineno"> 56</span> uint64_t test_case_6 = <a class="code hl_function" href="#aaf94f3212385cff0a5f19ff6b0cce8e7">fibonacci</a>(15);</div>
|
||||
<div class="line"><span class="lineno"> 57</span> assert(test_case_6 == 610);</div>
|
||||
<div class="line"><span class="lineno"> 58</span> <a class="code hl_classRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << <span class="stringliteral">"Passed Test 6!"</span> << <a class="code hl_functionRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/manip/endl.html">std::endl</a> << <a class="code hl_functionRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/manip/endl.html">std::endl</a>;</div>
|
||||
<div class="line"><span class="lineno"> 59</span>}</div>
|
||||
</div><!-- fragment --><div class="dynheader">
|
||||
Here is the call graph for this function:</div>
|
||||
<div class="dyncontent">
|
||||
<div class="center"><iframe scrolling="no" frameborder="0" src="../../d9/d89/fibonacci_8cpp_aa8dca7b867074164d5f45b0f3851269d_cgraph.svg" width="176" height="110"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
|
||||
</div>
|
||||
|
||||
<p>Self-test implementation. </p>
|
||||
<dl class="section return"><dt>Returns</dt><dd><code>void</code> </dd></dl>
|
||||
<div class="fragment"><div class="line"><span class="lineno"> 47</span> {</div>
|
||||
<div class="line"><span class="lineno"> 48</span> assert(math::fibonacci::fibonacci(0) == 0);</div>
|
||||
<div class="line"><span class="lineno"> 49</span> assert(math::fibonacci::fibonacci(1) == 1);</div>
|
||||
<div class="line"><span class="lineno"> 50</span> assert(math::fibonacci::fibonacci(2) == 1);</div>
|
||||
<div class="line"><span class="lineno"> 51</span> assert(math::fibonacci::fibonacci(3) == 2);</div>
|
||||
<div class="line"><span class="lineno"> 52</span> assert(math::fibonacci::fibonacci(4) == 3);</div>
|
||||
<div class="line"><span class="lineno"> 53</span> assert(math::fibonacci::fibonacci(15) == 610);</div>
|
||||
<div class="line"><span class="lineno"> 54</span> assert(math::fibonacci::fibonacci(20) == 6765);</div>
|
||||
<div class="line"><span class="lineno"> 55</span> <a class="code hl_classRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << <span class="stringliteral">"All tests have passed successfully!\n"</span>;</div>
|
||||
<div class="line"><span class="lineno"> 56</span>}</div>
|
||||
<div class="ttc" id="abasic_ostream_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a></div></div>
|
||||
</div><!-- fragment -->
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
var fibonacci_8cpp =
|
||||
[
|
||||
[ "fibonacci", "d9/d89/fibonacci_8cpp.html#aaf94f3212385cff0a5f19ff6b0cce8e7", null ],
|
||||
[ "fibonacci", "d9/d89/fibonacci_8cpp.html#aeaaf5439cb29de4630c7dff2fd914b28", null ],
|
||||
[ "main", "d9/d89/fibonacci_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4", null ],
|
||||
[ "test", "d9/d89/fibonacci_8cpp.html#aa8dca7b867074164d5f45b0f3851269d", null ]
|
||||
];
|
||||
@@ -1,8 +0,0 @@
|
||||
<map id="test" name="test">
|
||||
<area shape="rect" id="Node000001" title=" " alt="" coords="5,43,49,68"/>
|
||||
<area shape="rect" id="Node000002" href="/Users/runner/work/C-Plus-Plus/C-Plus-Plus/doc/cppreference-doxygen-web.tag.xml$cpp/io/manip/endl.html#" title=" " alt="" coords="98,5,169,31"/>
|
||||
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="48,45,82,33,84,38,50,50"/>
|
||||
<area shape="rect" id="Node000003" href="$d9/d89/fibonacci_8cpp.html#aaf94f3212385cff0a5f19ff6b0cce8e7" title=" " alt="" coords="97,79,170,104"/>
|
||||
<area shape="poly" id="edge2_Node000001_Node000003" title=" " alt="" coords="50,60,83,72,81,77,48,65"/>
|
||||
<area shape="poly" id="edge3_Node000003_Node000003" title=" " alt="" coords="114,79,111,70,113,61,121,54,133,52,147,55,154,62,150,65,144,59,133,57,123,59,117,64,116,70,119,77"/>
|
||||
</map>
|
||||
@@ -1 +0,0 @@
|
||||
a9cd1531192bff75ed3f70cf81ccd0ea
|
||||
@@ -1,92 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 12.1.1 (20240910.0053)
|
||||
-->
|
||||
<!-- Title: test Pages: 1 -->
|
||||
<svg width="132pt" height="82pt"
|
||||
viewBox="0.00 0.00 131.50 82.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
|
||||
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
|
||||
|
||||
<style type="text/css"><![CDATA[
|
||||
.node, .edge {opacity: 0.7;}
|
||||
.node.selected, .edge.selected {opacity: 1;}
|
||||
.edge:hover path { stroke: red; }
|
||||
.edge:hover polygon { stroke: red; fill: red; }
|
||||
]]></style>
|
||||
<script type="application/ecmascript" xlink:href="../../svg.min.js"/>
|
||||
<svg id="graph" class="graph">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 78.25)">
|
||||
<title>test</title>
|
||||
<!-- Node1 -->
|
||||
<g id="Node000001" class="node">
|
||||
<title>Node1</title>
|
||||
<g id="a_Node000001"><a xlink:title=" ">
|
||||
<polygon fill="#999999" stroke="#666666" points="32.5,-46.25 0,-46.25 0,-27 32.5,-27 32.5,-46.25"/>
|
||||
<text text-anchor="middle" x="16.25" y="-32.75" font-family="Helvetica,sans-Serif" font-size="10.00">test</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node2 -->
|
||||
<g id="Node000002" class="node">
|
||||
<title>Node2</title>
|
||||
<g id="a_Node000002"><a target="_blank" xlink:href="http://en.cppreference.com/w/cpp/io/manip/endl.html#" xlink:title=" ">
|
||||
<polygon fill="white" stroke="#666666" points="122.75,-74.25 69.25,-74.25 69.25,-55 122.75,-55 122.75,-74.25"/>
|
||||
<text text-anchor="middle" x="96" y="-60.75" font-family="Helvetica,sans-Serif" font-size="10.00">std::endl</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node2 -->
|
||||
<g id="edge1_Node000001_Node000002" class="edge">
|
||||
<title>Node1->Node2</title>
|
||||
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M32.98,-42.29C40.3,-44.93 49.34,-48.18 58.23,-51.38"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="56.86,-54.61 67.46,-54.71 59.23,-48.02 56.86,-54.61"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node3 -->
|
||||
<g id="Node000003" class="node">
|
||||
<title>Node3</title>
|
||||
<g id="a_Node000003"><a xlink:href="../../d9/d89/fibonacci_8cpp.html#aaf94f3212385cff0a5f19ff6b0cce8e7" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="#666666" points="123.5,-19.25 68.5,-19.25 68.5,0 123.5,0 123.5,-19.25"/>
|
||||
<text text-anchor="middle" x="96" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">fibonacci</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node3 -->
|
||||
<g id="edge2_Node000001_Node000003" class="edge">
|
||||
<title>Node1->Node3</title>
|
||||
<g id="a_edge2_Node000001_Node000003"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M32.98,-31.16C40.1,-28.69 48.84,-25.66 57.49,-22.65"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="58.54,-25.99 66.83,-19.41 56.24,-19.38 58.54,-25.99"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node3->Node3 -->
|
||||
<g id="edge3_Node000003_Node000003" class="edge">
|
||||
<title>Node3->Node3</title>
|
||||
<g id="a_edge3_Node000003_Node000003"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M83.51,-19.54C77.82,-28.15 81.98,-37.25 96,-37.25 103.67,-37.25 108.38,-34.53 110.16,-30.65"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="113.66,-30.4 108.71,-21.03 106.74,-31.44 113.66,-30.4"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</svg>
|
||||
|
||||
<style type='text/css'>
|
||||
<![CDATA[
|
||||
[data-mouse-over-selected='false'] { opacity: 0.7; }
|
||||
[data-mouse-over-selected='true'] { opacity: 1.0; }
|
||||
]]>
|
||||
</style>
|
||||
<script type="application/ecmascript"><![CDATA[
|
||||
document.addEventListener('DOMContentLoaded', (event) => {
|
||||
highlightEdges();
|
||||
highlightAdjacentNodes();
|
||||
});
|
||||
]]></script>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB |
@@ -1,66 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 12.1.1 (20240910.0053)
|
||||
-->
|
||||
<!-- Title: test Pages: 1 -->
|
||||
<svg width="132pt" height="82pt"
|
||||
viewBox="0.00 0.00 131.50 82.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 78.25)">
|
||||
<title>test</title>
|
||||
<!-- Node1 -->
|
||||
<g id="Node000001" class="node">
|
||||
<title>Node1</title>
|
||||
<g id="a_Node000001"><a xlink:title=" ">
|
||||
<polygon fill="#999999" stroke="#666666" points="32.5,-46.25 0,-46.25 0,-27 32.5,-27 32.5,-46.25"/>
|
||||
<text text-anchor="middle" x="16.25" y="-32.75" font-family="Helvetica,sans-Serif" font-size="10.00">test</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node2 -->
|
||||
<g id="Node000002" class="node">
|
||||
<title>Node2</title>
|
||||
<g id="a_Node000002"><a target="_blank" xlink:href="http://en.cppreference.com/w/cpp/io/manip/endl.html#" xlink:title=" ">
|
||||
<polygon fill="white" stroke="#666666" points="122.75,-74.25 69.25,-74.25 69.25,-55 122.75,-55 122.75,-74.25"/>
|
||||
<text text-anchor="middle" x="96" y="-60.75" font-family="Helvetica,sans-Serif" font-size="10.00">std::endl</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node2 -->
|
||||
<g id="edge1_Node000001_Node000002" class="edge">
|
||||
<title>Node1->Node2</title>
|
||||
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M32.98,-42.29C40.3,-44.93 49.34,-48.18 58.23,-51.38"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="56.86,-54.61 67.46,-54.71 59.23,-48.02 56.86,-54.61"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node3 -->
|
||||
<g id="Node000003" class="node">
|
||||
<title>Node3</title>
|
||||
<g id="a_Node000003"><a xlink:href="../../d9/d89/fibonacci_8cpp.html#aaf94f3212385cff0a5f19ff6b0cce8e7" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="#666666" points="123.5,-19.25 68.5,-19.25 68.5,0 123.5,0 123.5,-19.25"/>
|
||||
<text text-anchor="middle" x="96" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">fibonacci</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node3 -->
|
||||
<g id="edge2_Node000001_Node000003" class="edge">
|
||||
<title>Node1->Node3</title>
|
||||
<g id="a_edge2_Node000001_Node000003"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M32.98,-31.16C40.1,-28.69 48.84,-25.66 57.49,-22.65"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="58.54,-25.99 66.83,-19.41 56.24,-19.38 58.54,-25.99"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node3->Node3 -->
|
||||
<g id="edge3_Node000003_Node000003" class="edge">
|
||||
<title>Node3->Node3</title>
|
||||
<g id="a_edge3_Node000003_Node000003"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M83.51,-19.54C77.82,-28.15 81.98,-37.25 96,-37.25 103.67,-37.25 108.38,-34.53 110.16,-30.65"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="113.66,-30.4 108.71,-21.03 106.74,-31.44 113.66,-30.4"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1,4 +0,0 @@
|
||||
<map id="fibonacci" name="fibonacci">
|
||||
<area shape="rect" id="Node000001" title=" " alt="" coords="5,29,79,55"/>
|
||||
<area shape="poly" id="edge1_Node000001_Node000001" title=" " alt="" coords="28,29,27,12,33,5,42,3,52,5,57,12,53,15,49,10,42,8,35,10,32,14,33,29"/>
|
||||
</map>
|
||||
@@ -1 +0,0 @@
|
||||
26593ad1e068d4103e758e75c2180267
|
||||
@@ -1,56 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 12.1.1 (20240910.0053)
|
||||
-->
|
||||
<!-- Title: fibonacci Pages: 1 -->
|
||||
<svg width="63pt" height="45pt"
|
||||
viewBox="0.00 0.00 63.00 45.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
|
||||
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
|
||||
|
||||
<style type="text/css"><![CDATA[
|
||||
.node, .edge {opacity: 0.7;}
|
||||
.node.selected, .edge.selected {opacity: 1;}
|
||||
.edge:hover path { stroke: red; }
|
||||
.edge:hover polygon { stroke: red; fill: red; }
|
||||
]]></style>
|
||||
<script type="application/ecmascript" xlink:href="../../svg.min.js"/>
|
||||
<svg id="graph" class="graph">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 41.25)">
|
||||
<title>fibonacci</title>
|
||||
<!-- Node1 -->
|
||||
<g id="Node000001" class="node">
|
||||
<title>Node1</title>
|
||||
<g id="a_Node000001"><a xlink:title=" ">
|
||||
<polygon fill="#999999" stroke="#666666" points="55,-19.25 0,-19.25 0,0 55,0 55,-19.25"/>
|
||||
<text text-anchor="middle" x="27.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">fibonacci</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node1 -->
|
||||
<g id="edge1_Node000001_Node000001" class="edge">
|
||||
<title>Node1->Node1</title>
|
||||
<g id="a_edge1_Node000001_Node000001"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M18.89,-19.54C14.96,-28.15 17.83,-37.25 27.5,-37.25 32.64,-37.25 35.85,-34.68 37.15,-30.98"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="40.64,-30.69 36.25,-21.05 33.67,-31.32 40.64,-30.69"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</svg>
|
||||
|
||||
<style type='text/css'>
|
||||
<![CDATA[
|
||||
[data-mouse-over-selected='false'] { opacity: 0.7; }
|
||||
[data-mouse-over-selected='true'] { opacity: 1.0; }
|
||||
]]>
|
||||
</style>
|
||||
<script type="application/ecmascript"><![CDATA[
|
||||
document.addEventListener('DOMContentLoaded', (event) => {
|
||||
highlightEdges();
|
||||
highlightAdjacentNodes();
|
||||
});
|
||||
]]></script>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 12.1.1 (20240910.0053)
|
||||
-->
|
||||
<!-- Title: fibonacci Pages: 1 -->
|
||||
<svg width="63pt" height="45pt"
|
||||
viewBox="0.00 0.00 63.00 45.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 41.25)">
|
||||
<title>fibonacci</title>
|
||||
<!-- Node1 -->
|
||||
<g id="Node000001" class="node">
|
||||
<title>Node1</title>
|
||||
<g id="a_Node000001"><a xlink:title=" ">
|
||||
<polygon fill="#999999" stroke="#666666" points="55,-19.25 0,-19.25 0,0 55,0 55,-19.25"/>
|
||||
<text text-anchor="middle" x="27.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">fibonacci</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node1 -->
|
||||
<g id="edge1_Node000001_Node000001" class="edge">
|
||||
<title>Node1->Node1</title>
|
||||
<g id="a_edge1_Node000001_Node000001"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M18.89,-19.54C14.96,-28.15 17.83,-37.25 27.5,-37.25 32.64,-37.25 35.85,-34.68 37.15,-30.98"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="40.64,-30.69 36.25,-21.05 33.67,-31.32 40.64,-30.69"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,12 +1,5 @@
|
||||
<map id="main" name="main">
|
||||
<area shape="rect" id="Node000001" title="Main function." alt="" coords="5,48,55,74"/>
|
||||
<area shape="rect" id="Node000002" href="/Users/runner/work/C-Plus-Plus/C-Plus-Plus/doc/cppreference-doxygen-web.tag.xml$cpp/io/manip/endl.html#" title=" " alt="" coords="195,5,266,31"/>
|
||||
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="54,49,102,33,179,20,180,25,103,38,56,54"/>
|
||||
<area shape="rect" id="Node000003" href="$d9/d89/fibonacci_8cpp.html#aaf94f3212385cff0a5f19ff6b0cce8e7" title=" " alt="" coords="194,85,267,111"/>
|
||||
<area shape="poly" id="edge2_Node000001_Node000003" title=" " alt="" coords="56,68,103,84,179,94,178,99,102,89,55,74"/>
|
||||
<area shape="rect" id="Node000004" href="$d9/d89/fibonacci_8cpp.html#aa8dca7b867074164d5f45b0f3851269d" title=" " alt="" coords="103,48,146,74"/>
|
||||
<area shape="poly" id="edge4_Node000001_Node000004" title=" " alt="" coords="55,58,87,58,87,64,55,64"/>
|
||||
<area shape="poly" id="edge3_Node000003_Node000003" title=" " alt="" coords="212,86,208,77,210,67,218,61,231,59,244,61,251,68,248,72,242,66,231,64,220,66,215,70,213,76,217,84"/>
|
||||
<area shape="poly" id="edge5_Node000004_Node000002" title=" " alt="" coords="146,50,182,35,184,40,148,55"/>
|
||||
<area shape="poly" id="edge6_Node000004_Node000003" title=" " alt="" coords="148,66,180,78,178,83,146,71"/>
|
||||
<area shape="rect" id="Node000001" title="Main function." alt="" coords="5,5,55,31"/>
|
||||
<area shape="rect" id="Node000002" href="$d9/d89/fibonacci_8cpp.html#aa8dca7b867074164d5f45b0f3851269d" title="Self-test implementation." alt="" coords="103,5,146,31"/>
|
||||
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="55,16,87,16,87,21,55,21"/>
|
||||
</map>
|
||||
|
||||
@@ -1 +1 @@
|
||||
5203cbb32946bc39a2c8dbc4201e5b59
|
||||
f7fe1edb2eb3a1db4663c8809409b97f
|
||||
@@ -4,8 +4,8 @@
|
||||
<!-- Generated by graphviz version 12.1.1 (20240910.0053)
|
||||
-->
|
||||
<!-- Title: main Pages: 1 -->
|
||||
<svg width="205pt" height="87pt"
|
||||
viewBox="0.00 0.00 204.50 87.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="114pt" height="27pt"
|
||||
viewBox="0.00 0.00 113.50 27.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
|
||||
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
|
||||
|
||||
@@ -17,23 +17,23 @@
|
||||
]]></style>
|
||||
<script type="application/ecmascript" xlink:href="../../svg.min.js"/>
|
||||
<svg id="graph" class="graph">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 83.25)">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 23.25)">
|
||||
<title>main</title>
|
||||
<!-- Node1 -->
|
||||
<g id="Node000001" class="node">
|
||||
<title>Node1</title>
|
||||
<g id="a_Node000001"><a xlink:title="Main function.">
|
||||
<polygon fill="#999999" stroke="#666666" points="37,-47.25 0,-47.25 0,-28 37,-28 37,-47.25"/>
|
||||
<text text-anchor="middle" x="18.5" y="-33.75" font-family="Helvetica,sans-Serif" font-size="10.00">main</text>
|
||||
<polygon fill="#999999" stroke="#666666" points="37,-19.25 0,-19.25 0,0 37,0 37,-19.25"/>
|
||||
<text text-anchor="middle" x="18.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">main</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node2 -->
|
||||
<g id="Node000002" class="node">
|
||||
<title>Node2</title>
|
||||
<g id="a_Node000002"><a target="_blank" xlink:href="http://en.cppreference.com/w/cpp/io/manip/endl.html#" xlink:title=" ">
|
||||
<polygon fill="white" stroke="#666666" points="195.75,-79.25 142.25,-79.25 142.25,-60 195.75,-60 195.75,-79.25"/>
|
||||
<text text-anchor="middle" x="169" y="-65.75" font-family="Helvetica,sans-Serif" font-size="10.00">std::endl</text>
|
||||
<g id="a_Node000002"><a xlink:href="../../d9/d89/fibonacci_8cpp.html#aa8dca7b867074164d5f45b0f3851269d" target="_top" xlink:title="Self-test implementation.">
|
||||
<polygon fill="white" stroke="#666666" points="105.5,-19.25 73,-19.25 73,0 105.5,0 105.5,-19.25"/>
|
||||
<text text-anchor="middle" x="89.25" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">test</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
@@ -41,71 +41,8 @@
|
||||
<g id="edge1_Node000001_Node000002" class="edge">
|
||||
<title>Node1->Node2</title>
|
||||
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M37.06,-44.89C47.37,-48.89 60.74,-53.64 73,-56.62 91.75,-61.19 113,-64.28 130.64,-66.31"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="130.11,-69.77 140.42,-67.35 130.85,-62.81 130.11,-69.77"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node3 -->
|
||||
<g id="Node000003" class="node">
|
||||
<title>Node3</title>
|
||||
<g id="a_Node000003"><a xlink:href="../../d9/d89/fibonacci_8cpp.html#aaf94f3212385cff0a5f19ff6b0cce8e7" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="#666666" points="196.5,-19.25 141.5,-19.25 141.5,0 196.5,0 196.5,-19.25"/>
|
||||
<text text-anchor="middle" x="169" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">fibonacci</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node3 -->
|
||||
<g id="edge2_Node000001_Node000003" class="edge">
|
||||
<title>Node1->Node3</title>
|
||||
<g id="a_edge2_Node000001_Node000003"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M37.5,-29.98C47.72,-25.95 60.87,-21.31 73,-18.62 91.4,-14.55 112.2,-12.32 129.64,-11.1"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="129.83,-14.6 139.6,-10.5 129.4,-7.61 129.83,-14.6"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node4 -->
|
||||
<g id="Node000004" class="node">
|
||||
<title>Node4</title>
|
||||
<g id="a_Node000004"><a xlink:href="../../d9/d89/fibonacci_8cpp.html#aa8dca7b867074164d5f45b0f3851269d" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="#666666" points="105.5,-47.25 73,-47.25 73,-28 105.5,-28 105.5,-47.25"/>
|
||||
<text text-anchor="middle" x="89.25" y="-33.75" font-family="Helvetica,sans-Serif" font-size="10.00">test</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node4 -->
|
||||
<g id="edge4_Node000001_Node000004" class="edge">
|
||||
<title>Node1->Node4</title>
|
||||
<g id="a_edge4_Node000001_Node000004"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M37.2,-37.62C44.58,-37.62 53.31,-37.62 61.45,-37.62"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="61.2,-41.13 71.2,-37.63 61.2,-34.13 61.2,-41.13"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node3->Node3 -->
|
||||
<g id="edge3_Node000003_Node000003" class="edge">
|
||||
<title>Node3->Node3</title>
|
||||
<g id="a_edge3_Node000003_Node000003"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M156.51,-19.54C150.82,-28.15 154.98,-37.25 169,-37.25 176.67,-37.25 181.38,-34.53 183.16,-30.65"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="186.66,-30.4 181.71,-21.03 179.74,-31.44 186.66,-30.4"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node4->Node2 -->
|
||||
<g id="edge5_Node000004_Node000002" class="edge">
|
||||
<title>Node4->Node2</title>
|
||||
<g id="a_edge5_Node000004_Node000002"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M105.98,-44.1C113.79,-47.31 123.54,-51.33 132.99,-55.22"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="131.43,-58.36 142.01,-58.93 134.09,-51.89 131.43,-58.36"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node4->Node3 -->
|
||||
<g id="edge6_Node000004_Node000003" class="edge">
|
||||
<title>Node4->Node3</title>
|
||||
<g id="a_edge6_Node000004_Node000003"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M105.98,-31.96C113.1,-29.4 121.84,-26.25 130.49,-23.14"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="131.62,-26.45 139.84,-19.77 129.24,-19.86 131.62,-26.45"/>
|
||||
<path fill="none" stroke="#63b8ff" d="M37.2,-9.62C44.58,-9.62 53.31,-9.62 61.45,-9.62"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="61.2,-13.13 71.2,-9.63 61.2,-6.13 61.2,-13.13"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 2.4 KiB |
@@ -4,25 +4,25 @@
|
||||
<!-- Generated by graphviz version 12.1.1 (20240910.0053)
|
||||
-->
|
||||
<!-- Title: main Pages: 1 -->
|
||||
<svg width="205pt" height="87pt"
|
||||
viewBox="0.00 0.00 204.50 87.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 83.25)">
|
||||
<svg width="114pt" height="27pt"
|
||||
viewBox="0.00 0.00 113.50 27.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 23.25)">
|
||||
<title>main</title>
|
||||
<!-- Node1 -->
|
||||
<g id="Node000001" class="node">
|
||||
<title>Node1</title>
|
||||
<g id="a_Node000001"><a xlink:title="Main function.">
|
||||
<polygon fill="#999999" stroke="#666666" points="37,-47.25 0,-47.25 0,-28 37,-28 37,-47.25"/>
|
||||
<text text-anchor="middle" x="18.5" y="-33.75" font-family="Helvetica,sans-Serif" font-size="10.00">main</text>
|
||||
<polygon fill="#999999" stroke="#666666" points="37,-19.25 0,-19.25 0,0 37,0 37,-19.25"/>
|
||||
<text text-anchor="middle" x="18.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">main</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node2 -->
|
||||
<g id="Node000002" class="node">
|
||||
<title>Node2</title>
|
||||
<g id="a_Node000002"><a target="_blank" xlink:href="http://en.cppreference.com/w/cpp/io/manip/endl.html#" xlink:title=" ">
|
||||
<polygon fill="white" stroke="#666666" points="195.75,-79.25 142.25,-79.25 142.25,-60 195.75,-60 195.75,-79.25"/>
|
||||
<text text-anchor="middle" x="169" y="-65.75" font-family="Helvetica,sans-Serif" font-size="10.00">std::endl</text>
|
||||
<g id="a_Node000002"><a xlink:href="../../d9/d89/fibonacci_8cpp.html#aa8dca7b867074164d5f45b0f3851269d" target="_top" xlink:title="Self-test implementation.">
|
||||
<polygon fill="white" stroke="#666666" points="105.5,-19.25 73,-19.25 73,0 105.5,0 105.5,-19.25"/>
|
||||
<text text-anchor="middle" x="89.25" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">test</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
@@ -30,71 +30,8 @@
|
||||
<g id="edge1_Node000001_Node000002" class="edge">
|
||||
<title>Node1->Node2</title>
|
||||
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M37.06,-44.89C47.37,-48.89 60.74,-53.64 73,-56.62 91.75,-61.19 113,-64.28 130.64,-66.31"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="130.11,-69.77 140.42,-67.35 130.85,-62.81 130.11,-69.77"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node3 -->
|
||||
<g id="Node000003" class="node">
|
||||
<title>Node3</title>
|
||||
<g id="a_Node000003"><a xlink:href="../../d9/d89/fibonacci_8cpp.html#aaf94f3212385cff0a5f19ff6b0cce8e7" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="#666666" points="196.5,-19.25 141.5,-19.25 141.5,0 196.5,0 196.5,-19.25"/>
|
||||
<text text-anchor="middle" x="169" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">fibonacci</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node3 -->
|
||||
<g id="edge2_Node000001_Node000003" class="edge">
|
||||
<title>Node1->Node3</title>
|
||||
<g id="a_edge2_Node000001_Node000003"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M37.5,-29.98C47.72,-25.95 60.87,-21.31 73,-18.62 91.4,-14.55 112.2,-12.32 129.64,-11.1"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="129.83,-14.6 139.6,-10.5 129.4,-7.61 129.83,-14.6"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node4 -->
|
||||
<g id="Node000004" class="node">
|
||||
<title>Node4</title>
|
||||
<g id="a_Node000004"><a xlink:href="../../d9/d89/fibonacci_8cpp.html#aa8dca7b867074164d5f45b0f3851269d" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="#666666" points="105.5,-47.25 73,-47.25 73,-28 105.5,-28 105.5,-47.25"/>
|
||||
<text text-anchor="middle" x="89.25" y="-33.75" font-family="Helvetica,sans-Serif" font-size="10.00">test</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node4 -->
|
||||
<g id="edge4_Node000001_Node000004" class="edge">
|
||||
<title>Node1->Node4</title>
|
||||
<g id="a_edge4_Node000001_Node000004"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M37.2,-37.62C44.58,-37.62 53.31,-37.62 61.45,-37.62"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="61.2,-41.13 71.2,-37.63 61.2,-34.13 61.2,-41.13"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node3->Node3 -->
|
||||
<g id="edge3_Node000003_Node000003" class="edge">
|
||||
<title>Node3->Node3</title>
|
||||
<g id="a_edge3_Node000003_Node000003"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M156.51,-19.54C150.82,-28.15 154.98,-37.25 169,-37.25 176.67,-37.25 181.38,-34.53 183.16,-30.65"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="186.66,-30.4 181.71,-21.03 179.74,-31.44 186.66,-30.4"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node4->Node2 -->
|
||||
<g id="edge5_Node000004_Node000002" class="edge">
|
||||
<title>Node4->Node2</title>
|
||||
<g id="a_edge5_Node000004_Node000002"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M105.98,-44.1C113.79,-47.31 123.54,-51.33 132.99,-55.22"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="131.43,-58.36 142.01,-58.93 134.09,-51.89 131.43,-58.36"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node4->Node3 -->
|
||||
<g id="edge6_Node000004_Node000003" class="edge">
|
||||
<title>Node4->Node3</title>
|
||||
<g id="a_edge6_Node000004_Node000003"><a xlink:title=" ">
|
||||
<path fill="none" stroke="#63b8ff" d="M105.98,-31.96C113.1,-29.4 121.84,-26.25 130.49,-23.14"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="131.62,-26.45 139.84,-19.77 129.24,-19.86 131.62,-26.45"/>
|
||||
<path fill="none" stroke="#63b8ff" d="M37.2,-9.62C44.58,-9.62 53.31,-9.62 61.45,-9.62"/>
|
||||
<polygon fill="#63b8ff" stroke="#63b8ff" points="61.2,-13.13 71.2,-9.63 61.2,-6.13 61.2,-13.13"/>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 1.6 KiB |