Documentation for 8476290081
@@ -234,9 +234,9 @@ Here is the call graph for this function:</div>
|
||||
</div><div class="memdoc">
|
||||
<p>main function </p>
|
||||
<div class="fragment"><div class="line"><a name="l00243"></a><span class="lineno"> 243</span>  {</div>
|
||||
<div class="line"><a name="l00244"></a><span class="lineno"> 244</span>  <span class="keywordtype">int</span> mat_size = 5;</div>
|
||||
<div class="line"><a name="l00244"></a><span class="lineno"> 244</span>  <span class="keywordtype">int</span> <a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#a9977ad12548c4a49dee9dc3f0685aa54">mat_size</a> = 5;</div>
|
||||
<div class="line"><a name="l00245"></a><span class="lineno"> 245</span>  <span class="keywordflow">if</span> (argc == 2) {</div>
|
||||
<div class="line"><a name="l00246"></a><span class="lineno"> 246</span>  mat_size = <a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/string/byte/atoi.html">atoi</a>(argv[1]);</div>
|
||||
<div class="line"><a name="l00246"></a><span class="lineno"> 246</span>  <a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#a9977ad12548c4a49dee9dc3f0685aa54">mat_size</a> = <a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/string/byte/atoi.html">atoi</a>(argv[1]);</div>
|
||||
<div class="line"><a name="l00247"></a><span class="lineno"> 247</span>  } <span class="keywordflow">else</span> { <span class="comment">// if invalid input argument is given run tests</span></div>
|
||||
<div class="line"><a name="l00248"></a><span class="lineno"> 248</span>  <a class="code" href="../../de/d75/qr__eigen__values_8cpp.html#a1440a7779ac56f47a3f355ce4a8c7da0">test1</a>();</div>
|
||||
<div class="line"><a name="l00249"></a><span class="lineno"> 249</span>  <a class="code" href="../../de/d75/qr__eigen__values_8cpp.html#a0283886819c7c140a023582b7269e2d0">test2</a>();</div>
|
||||
@@ -244,7 +244,7 @@ Here is the call graph for this function:</div>
|
||||
<div class="line"><a name="l00251"></a><span class="lineno"> 251</span>  <span class="keywordflow">return</span> 0;</div>
|
||||
<div class="line"><a name="l00252"></a><span class="lineno"> 252</span>  }</div>
|
||||
<div class="line"><a name="l00253"></a><span class="lineno"> 253</span>  </div>
|
||||
<div class="line"><a name="l00254"></a><span class="lineno"> 254</span>  <span class="keywordflow">if</span> (mat_size < 2) {</div>
|
||||
<div class="line"><a name="l00254"></a><span class="lineno"> 254</span>  <span class="keywordflow">if</span> (<a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#a9977ad12548c4a49dee9dc3f0685aa54">mat_size</a> < 2) {</div>
|
||||
<div class="line"><a name="l00255"></a><span class="lineno"> 255</span>  <a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/c/fprintf.html">fprintf</a>(stderr, <span class="stringliteral">"Matrix size should be > 2\n"</span>);</div>
|
||||
<div class="line"><a name="l00256"></a><span class="lineno"> 256</span>  <span class="keywordflow">return</span> -1;</div>
|
||||
<div class="line"><a name="l00257"></a><span class="lineno"> 257</span>  }</div>
|
||||
@@ -252,7 +252,7 @@ Here is the call graph for this function:</div>
|
||||
<div class="line"><a name="l00259"></a><span class="lineno"> 259</span>  <span class="comment">// initialize random number generator</span></div>
|
||||
<div class="line"><a name="l00260"></a><span class="lineno"> 260</span>  <a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/numeric/random/srand.html">std::srand</a>(<a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/chrono/c/time.html">std::time</a>(<span class="keyword">nullptr</span>));</div>
|
||||
<div class="line"><a name="l00261"></a><span class="lineno"> 261</span>  </div>
|
||||
<div class="line"><a name="l00262"></a><span class="lineno"> 262</span>  <span class="keywordtype">int</span> i, rows = mat_size, columns = mat_size;</div>
|
||||
<div class="line"><a name="l00262"></a><span class="lineno"> 262</span>  <span class="keywordtype">int</span> i, rows = <a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#a9977ad12548c4a49dee9dc3f0685aa54">mat_size</a>, columns = <a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#a9977ad12548c4a49dee9dc3f0685aa54">mat_size</a>;</div>
|
||||
<div class="line"><a name="l00263"></a><span class="lineno"> 263</span>  </div>
|
||||
<div class="line"><a name="l00264"></a><span class="lineno"> 264</span>  <a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/numeric/valarray.html">std::valarray<std::valarray<double></a>> A(rows);</div>
|
||||
<div class="line"><a name="l00265"></a><span class="lineno"> 265</span>  </div>
|
||||
@@ -270,7 +270,7 @@ Here is the call graph for this function:</div>
|
||||
<div class="line"><a name="l00277"></a><span class="lineno"> 277</span>  <span class="keywordtype">double</span> dtime = <span class="keyword">static_cast<</span><span class="keywordtype">double</span><span class="keyword">></span>(<a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/chrono/c/clock.html">clock</a>() - t1) / CLOCKS_PER_SEC;</div>
|
||||
<div class="line"><a name="l00278"></a><span class="lineno"> 278</span>  </div>
|
||||
<div class="line"><a name="l00279"></a><span class="lineno"> 279</span>  <a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << <span class="stringliteral">"Eigen vals: "</span>;</div>
|
||||
<div class="line"><a name="l00280"></a><span class="lineno"> 280</span>  <span class="keywordflow">for</span> (i = 0; i < mat_size; i++) <a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << eigen_vals[i] << <span class="stringliteral">"\t"</span>;</div>
|
||||
<div class="line"><a name="l00280"></a><span class="lineno"> 280</span>  <span class="keywordflow">for</span> (i = 0; i < <a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#a9977ad12548c4a49dee9dc3f0685aa54">mat_size</a>; i++) <a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << eigen_vals[i] << <span class="stringliteral">"\t"</span>;</div>
|
||||
<div class="line"><a name="l00281"></a><span class="lineno"> 281</span>  <a class="codeRef" target="_blank" href="http://en.cppreference.com/w/cpp/io/basic_ostream.html">std::cout</a> << <span class="stringliteral">"\nTime taken to compute: "</span> << dtime << <span class="stringliteral">" sec\n"</span>;</div>
|
||||
<div class="line"><a name="l00282"></a><span class="lineno"> 282</span>  </div>
|
||||
<div class="line"><a name="l00283"></a><span class="lineno"> 283</span>  <span class="keywordflow">return</span> 0;</div>
|
||||
@@ -341,8 +341,8 @@ Here is the call graph for this function:</div>
|
||||
<div class="line"><a name="l00066"></a><span class="lineno"> 66</span>  <span class="keywordflow">for</span> (<span class="keywordtype">int</span> i = 0; i < R1; i++) {</div>
|
||||
<div class="line"><a name="l00067"></a><span class="lineno"> 67</span>  <span class="keywordflow">for</span> (<span class="keywordtype">int</span> j = 0; j < C2; j++) {</div>
|
||||
<div class="line"><a name="l00068"></a><span class="lineno"> 68</span>  OUT[0][i][j] = 0.f;</div>
|
||||
<div class="line"><a name="l00069"></a><span class="lineno"> 69</span>  <span class="keywordflow">for</span> (<span class="keywordtype">int</span> <a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#afcf0d19607cd0edd8ae333d2b9c220c0">k</a> = 0; <a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#afcf0d19607cd0edd8ae333d2b9c220c0">k</a> < C1; <a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#afcf0d19607cd0edd8ae333d2b9c220c0">k</a>++) {</div>
|
||||
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span>  OUT[0][i][j] += A[i][<a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#afcf0d19607cd0edd8ae333d2b9c220c0">k</a>] * B[<a class="code" href="../../d7/d35/matrix__exponentiation_8cpp.html#afcf0d19607cd0edd8ae333d2b9c220c0">k</a>][j];</div>
|
||||
<div class="line"><a name="l00069"></a><span class="lineno"> 69</span>  <span class="keywordflow">for</span> (<span class="keywordtype">int</span> k = 0; k < C1; k++) {</div>
|
||||
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span>  OUT[0][i][j] += A[i][k] * B[k][j];</div>
|
||||
<div class="line"><a name="l00071"></a><span class="lineno"> 71</span>  }</div>
|
||||
<div class="line"><a name="l00072"></a><span class="lineno"> 72</span>  }</div>
|
||||
<div class="line"><a name="l00073"></a><span class="lineno"> 73</span>  }</div>
|
||||
@@ -457,12 +457,12 @@ Here is the call graph for this function:</div>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<div class="ttc" id="asrand_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/numeric/random/srand.html">std::srand</a></div><div class="ttdeci">T srand(T... args)</div></div>
|
||||
<div class="ttc" id="amatrix__exponentiation_8cpp_html_a9977ad12548c4a49dee9dc3f0685aa54"><div class="ttname"><a href="../../d7/d35/matrix__exponentiation_8cpp.html#a9977ad12548c4a49dee9dc3f0685aa54">mat_size</a></div><div class="ttdeci">ll mat_size</div><div class="ttdef"><b>Definition:</b> matrix_exponentiation.cpp:45</div></div>
|
||||
<div class="ttc" id="aqr__eigen__values_8cpp_html_a33cb0a68c36aa26fd599c7c66da86ed7"><div class="ttname"><a href="../../de/d75/qr__eigen__values_8cpp.html#a33cb0a68c36aa26fd599c7c66da86ed7">create_matrix</a></div><div class="ttdeci">void create_matrix(std::valarray< std::valarray< double >> *A)</div><div class="ttdef"><b>Definition:</b> qr_eigen_values.cpp:28</div></div>
|
||||
<div class="ttc" id="anamespaceqr__algorithm_html_a763896dbb4a7e95c4a1e614ac0819d66"><div class="ttname"><a href="../../d2/d3b/namespaceqr__algorithm.html#a763896dbb4a7e95c4a1e614ac0819d66">qr_algorithm::eigen_values</a></div><div class="ttdeci">std::valarray< double > eigen_values(std::valarray< std::valarray< double >> *A, bool print_intermediates=false)</div><div class="ttdef"><b>Definition:</b> qr_eigen_values.cpp:98</div></div>
|
||||
<div class="ttc" id="aclock_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/chrono/c/clock.html">std::clock</a></div><div class="ttdeci">T clock(T... args)</div></div>
|
||||
<div class="ttc" id="afprintf_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/io/c/fprintf.html">std::fprintf</a></div><div class="ttdeci">T fprintf(T... args)</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="amatrix__exponentiation_8cpp_html_afcf0d19607cd0edd8ae333d2b9c220c0"><div class="ttname"><a href="../../d7/d35/matrix__exponentiation_8cpp.html#afcf0d19607cd0edd8ae333d2b9c220c0">k</a></div><div class="ttdeci">ll k</div><div class="ttdef"><b>Definition:</b> matrix_exponentiation.cpp:48</div></div>
|
||||
<div class="ttc" id="aatoi_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/string/byte/atoi.html">std::atoi</a></div><div class="ttdeci">T atoi(T... args)</div></div>
|
||||
<div class="ttc" id="aperror_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/io/c/perror.html">std::perror</a></div><div class="ttdeci">T perror(T... args)</div></div>
|
||||
<div class="ttc" id="avalarray_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/numeric/valarray.html">std::valarray</a></div><div class="ttdoc">STL class.</div></div>
|
||||
@@ -476,7 +476,7 @@ Here is the call graph for this function:</div>
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="../../dir_9c6faab82c22511b50177aa2e38e2780.html">numerical_methods</a></li><li class="navelem"><a class="el" href="../../de/d75/qr__eigen__values_8cpp.html">qr_eigen_values.cpp</a></li>
|
||||
<li class="footer">Generated on Wed Jun 24 2020 22:45:08 for Algorithms_in_C++ by
|
||||
<li class="footer">Generated on Wed Jun 24 2020 22:52:56 for Algorithms_in_C++ by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.18 </li>
|
||||
</ul>
|
||||
|
||||
@@ -6,6 +6,6 @@
|
||||
<area shape="rect" id="node4" href="$d2/d3b/namespaceqr__algorithm.html#ab1ac74497ffb2101040cc1efe3546de8" title=" " alt="" coords="284,56,471,83"/>
|
||||
<area shape="rect" id="node5" href="$d2/d3b/namespaceqr__algorithm.html#ad16da2183db22378435042f26af43d5f" title=" " alt="" coords="519,31,688,57"/>
|
||||
<area shape="rect" id="node8" href="$d2/d3b/namespaceqr__algorithm.html#a5422c76bfa322620de611083bd518d71" title=" " alt="" coords="521,81,686,108"/>
|
||||
<area shape="rect" id="node6" href="/Users/runner/runners/2.263.0/work/C-Plus-Plus/C-Plus-Plus/doc/cppreference-doxygen-web.tag.xml$cpp/numeric/math/sqrt.html#" title=" " alt="" coords="782,5,853,32"/>
|
||||
<area shape="rect" id="node7" href="$d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" title=" " alt="" coords="736,56,899,83"/>
|
||||
<area shape="rect" id="node6" href="/Users/runner/runners/2.263.0/work/C-Plus-Plus/C-Plus-Plus/doc/cppreference-doxygen-web.tag.xml$cpp/numeric/math/sqrt.html#" title=" " alt="" coords="782,31,853,57"/>
|
||||
<area shape="rect" id="node7" href="$d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" title=" " alt="" coords="736,81,899,108"/>
|
||||
</map>
|
||||
|
||||
@@ -1 +1 @@
|
||||
7f6559a9bad74fb1bcc1eea038eaee5a
|
||||
1065af1b9e817c153bf37732838523aa
|
||||
@@ -90,7 +90,7 @@ var sectionId = 'dynsection-4';
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node9 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge9" class="edge">
|
||||
<title>Node1->Node9</title>
|
||||
<path fill="none" stroke="midnightblue" d="M38.32,-28.07C51.55,-25.23 69.85,-21.3 86.01,-17.83"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="87.2,-21.16 96.25,-15.64 85.73,-14.31 87.2,-21.16"/>
|
||||
@@ -159,31 +159,37 @@ var sectionId = 'dynsection-4';
|
||||
<g id="node6" class="node">
|
||||
<title>Node6</title>
|
||||
<g id="a_node6"><a target="_blank" xlink:href="http://en.cppreference.com/w/cpp/numeric/math/sqrt.html#" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="582.5,-63.5 582.5,-82.5 635.5,-82.5 635.5,-63.5 582.5,-63.5"/>
|
||||
<text text-anchor="middle" x="609" y="-70.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
<polygon fill="white" stroke="black" points="582.5,-44.5 582.5,-63.5 635.5,-63.5 635.5,-44.5 582.5,-44.5"/>
|
||||
<text text-anchor="middle" x="609" y="-51.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node5->Node6 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>Node5->Node6</title>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-61.51C532.35,-63.93 554.07,-66.53 571.71,-68.65"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="571.78,-72.18 582.12,-69.9 572.61,-65.23 571.78,-72.18"/>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-54C532.35,-54 554.07,-54 571.71,-54"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="572.12,-57.5 582.12,-54 572.12,-50.5 572.12,-57.5"/>
|
||||
</g>
|
||||
<!-- Node7 -->
|
||||
<g id="node7" class="node">
|
||||
<title>Node7</title>
|
||||
<g id="a_node7"><a xlink:href="../../d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="548,-25.5 548,-44.5 670,-44.5 670,-25.5 548,-25.5"/>
|
||||
<text text-anchor="middle" x="609" y="-32.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
<polygon fill="white" stroke="black" points="548,-6.5 548,-25.5 670,-25.5 670,-6.5 548,-6.5"/>
|
||||
<text text-anchor="middle" x="609" y="-13.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node5->Node7 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>Node5->Node7</title>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-46.49C520.6,-45.48 529.32,-44.43 537.9,-43.4"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="538.37,-46.87 547.88,-42.21 537.53,-39.92 538.37,-46.87"/>
|
||||
<path fill="none" stroke="midnightblue" d="M489.5,-44.41C510.41,-39.4 536.21,-33.21 558.39,-27.89"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="559.38,-31.26 568.29,-25.52 557.75,-24.45 559.38,-31.26"/>
|
||||
</g>
|
||||
<!-- Node8->Node7 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>Node8->Node7</title>
|
||||
<path fill="none" stroke="midnightblue" d="M510.78,-16C519.64,-16 528.82,-16 537.84,-16"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="537.93,-19.5 547.93,-16 537.93,-12.5 537.93,-19.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@@ -44,7 +44,7 @@
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node9 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge9" class="edge">
|
||||
<title>Node1->Node9</title>
|
||||
<path fill="none" stroke="midnightblue" d="M38.32,-28.07C51.55,-25.23 69.85,-21.3 86.01,-17.83"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="87.2,-21.16 96.25,-15.64 85.73,-14.31 87.2,-21.16"/>
|
||||
@@ -113,31 +113,37 @@
|
||||
<g id="node6" class="node">
|
||||
<title>Node6</title>
|
||||
<g id="a_node6"><a target="_blank" xlink:href="http://en.cppreference.com/w/cpp/numeric/math/sqrt.html#" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="582.5,-63.5 582.5,-82.5 635.5,-82.5 635.5,-63.5 582.5,-63.5"/>
|
||||
<text text-anchor="middle" x="609" y="-70.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
<polygon fill="white" stroke="black" points="582.5,-44.5 582.5,-63.5 635.5,-63.5 635.5,-44.5 582.5,-44.5"/>
|
||||
<text text-anchor="middle" x="609" y="-51.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node5->Node6 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>Node5->Node6</title>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-61.51C532.35,-63.93 554.07,-66.53 571.71,-68.65"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="571.78,-72.18 582.12,-69.9 572.61,-65.23 571.78,-72.18"/>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-54C532.35,-54 554.07,-54 571.71,-54"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="572.12,-57.5 582.12,-54 572.12,-50.5 572.12,-57.5"/>
|
||||
</g>
|
||||
<!-- Node7 -->
|
||||
<g id="node7" class="node">
|
||||
<title>Node7</title>
|
||||
<g id="a_node7"><a xlink:href="../../d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="548,-25.5 548,-44.5 670,-44.5 670,-25.5 548,-25.5"/>
|
||||
<text text-anchor="middle" x="609" y="-32.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
<polygon fill="white" stroke="black" points="548,-6.5 548,-25.5 670,-25.5 670,-6.5 548,-6.5"/>
|
||||
<text text-anchor="middle" x="609" y="-13.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node5->Node7 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>Node5->Node7</title>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-46.49C520.6,-45.48 529.32,-44.43 537.9,-43.4"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="538.37,-46.87 547.88,-42.21 537.53,-39.92 538.37,-46.87"/>
|
||||
<path fill="none" stroke="midnightblue" d="M489.5,-44.41C510.41,-39.4 536.21,-33.21 558.39,-27.89"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="559.38,-31.26 568.29,-25.52 557.75,-24.45 559.38,-31.26"/>
|
||||
</g>
|
||||
<!-- Node8->Node7 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>Node8->Node7</title>
|
||||
<path fill="none" stroke="midnightblue" d="M510.78,-16C519.64,-16 528.82,-16 537.84,-16"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="537.93,-19.5 547.93,-16 537.93,-12.5 537.93,-19.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 7.1 KiB |
@@ -6,6 +6,6 @@
|
||||
<area shape="rect" id="node4" href="$d2/d3b/namespaceqr__algorithm.html#ab1ac74497ffb2101040cc1efe3546de8" title=" " alt="" coords="284,56,471,83"/>
|
||||
<area shape="rect" id="node5" href="$d2/d3b/namespaceqr__algorithm.html#ad16da2183db22378435042f26af43d5f" title=" " alt="" coords="519,31,688,57"/>
|
||||
<area shape="rect" id="node8" href="$d2/d3b/namespaceqr__algorithm.html#a5422c76bfa322620de611083bd518d71" title=" " alt="" coords="521,81,686,108"/>
|
||||
<area shape="rect" id="node6" href="/Users/runner/runners/2.263.0/work/C-Plus-Plus/C-Plus-Plus/doc/cppreference-doxygen-web.tag.xml$cpp/numeric/math/sqrt.html#" title=" " alt="" coords="782,5,853,32"/>
|
||||
<area shape="rect" id="node7" href="$d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" title=" " alt="" coords="736,56,899,83"/>
|
||||
<area shape="rect" id="node6" href="/Users/runner/runners/2.263.0/work/C-Plus-Plus/C-Plus-Plus/doc/cppreference-doxygen-web.tag.xml$cpp/numeric/math/sqrt.html#" title=" " alt="" coords="782,31,853,57"/>
|
||||
<area shape="rect" id="node7" href="$d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" title=" " alt="" coords="736,81,899,108"/>
|
||||
</map>
|
||||
|
||||
@@ -1 +1 @@
|
||||
68524f9a1914d782e59fe01311c7bd91
|
||||
7ae3dc26c04fecc216d3c139839c307e
|
||||
@@ -90,7 +90,7 @@ var sectionId = 'dynsection-3';
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node9 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge9" class="edge">
|
||||
<title>Node1->Node9</title>
|
||||
<path fill="none" stroke="midnightblue" d="M38.32,-28.07C51.55,-25.23 69.85,-21.3 86.01,-17.83"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="87.2,-21.16 96.25,-15.64 85.73,-14.31 87.2,-21.16"/>
|
||||
@@ -159,31 +159,37 @@ var sectionId = 'dynsection-3';
|
||||
<g id="node6" class="node">
|
||||
<title>Node6</title>
|
||||
<g id="a_node6"><a target="_blank" xlink:href="http://en.cppreference.com/w/cpp/numeric/math/sqrt.html#" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="582.5,-63.5 582.5,-82.5 635.5,-82.5 635.5,-63.5 582.5,-63.5"/>
|
||||
<text text-anchor="middle" x="609" y="-70.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
<polygon fill="white" stroke="black" points="582.5,-44.5 582.5,-63.5 635.5,-63.5 635.5,-44.5 582.5,-44.5"/>
|
||||
<text text-anchor="middle" x="609" y="-51.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node5->Node6 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>Node5->Node6</title>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-61.51C532.35,-63.93 554.07,-66.53 571.71,-68.65"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="571.78,-72.18 582.12,-69.9 572.61,-65.23 571.78,-72.18"/>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-54C532.35,-54 554.07,-54 571.71,-54"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="572.12,-57.5 582.12,-54 572.12,-50.5 572.12,-57.5"/>
|
||||
</g>
|
||||
<!-- Node7 -->
|
||||
<g id="node7" class="node">
|
||||
<title>Node7</title>
|
||||
<g id="a_node7"><a xlink:href="../../d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="548,-25.5 548,-44.5 670,-44.5 670,-25.5 548,-25.5"/>
|
||||
<text text-anchor="middle" x="609" y="-32.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
<polygon fill="white" stroke="black" points="548,-6.5 548,-25.5 670,-25.5 670,-6.5 548,-6.5"/>
|
||||
<text text-anchor="middle" x="609" y="-13.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node5->Node7 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>Node5->Node7</title>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-46.49C520.6,-45.48 529.32,-44.43 537.9,-43.4"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="538.37,-46.87 547.88,-42.21 537.53,-39.92 538.37,-46.87"/>
|
||||
<path fill="none" stroke="midnightblue" d="M489.5,-44.41C510.41,-39.4 536.21,-33.21 558.39,-27.89"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="559.38,-31.26 568.29,-25.52 557.75,-24.45 559.38,-31.26"/>
|
||||
</g>
|
||||
<!-- Node8->Node7 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>Node8->Node7</title>
|
||||
<path fill="none" stroke="midnightblue" d="M510.78,-16C519.64,-16 528.82,-16 537.84,-16"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="537.93,-19.5 547.93,-16 537.93,-12.5 537.93,-19.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@@ -44,7 +44,7 @@
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node9 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge9" class="edge">
|
||||
<title>Node1->Node9</title>
|
||||
<path fill="none" stroke="midnightblue" d="M38.32,-28.07C51.55,-25.23 69.85,-21.3 86.01,-17.83"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="87.2,-21.16 96.25,-15.64 85.73,-14.31 87.2,-21.16"/>
|
||||
@@ -113,31 +113,37 @@
|
||||
<g id="node6" class="node">
|
||||
<title>Node6</title>
|
||||
<g id="a_node6"><a target="_blank" xlink:href="http://en.cppreference.com/w/cpp/numeric/math/sqrt.html#" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="582.5,-63.5 582.5,-82.5 635.5,-82.5 635.5,-63.5 582.5,-63.5"/>
|
||||
<text text-anchor="middle" x="609" y="-70.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
<polygon fill="white" stroke="black" points="582.5,-44.5 582.5,-63.5 635.5,-63.5 635.5,-44.5 582.5,-44.5"/>
|
||||
<text text-anchor="middle" x="609" y="-51.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node5->Node6 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>Node5->Node6</title>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-61.51C532.35,-63.93 554.07,-66.53 571.71,-68.65"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="571.78,-72.18 582.12,-69.9 572.61,-65.23 571.78,-72.18"/>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-54C532.35,-54 554.07,-54 571.71,-54"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="572.12,-57.5 582.12,-54 572.12,-50.5 572.12,-57.5"/>
|
||||
</g>
|
||||
<!-- Node7 -->
|
||||
<g id="node7" class="node">
|
||||
<title>Node7</title>
|
||||
<g id="a_node7"><a xlink:href="../../d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="548,-25.5 548,-44.5 670,-44.5 670,-25.5 548,-25.5"/>
|
||||
<text text-anchor="middle" x="609" y="-32.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
<polygon fill="white" stroke="black" points="548,-6.5 548,-25.5 670,-25.5 670,-6.5 548,-6.5"/>
|
||||
<text text-anchor="middle" x="609" y="-13.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node5->Node7 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>Node5->Node7</title>
|
||||
<path fill="none" stroke="midnightblue" d="M512.14,-46.49C520.6,-45.48 529.32,-44.43 537.9,-43.4"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="538.37,-46.87 547.88,-42.21 537.53,-39.92 538.37,-46.87"/>
|
||||
<path fill="none" stroke="midnightblue" d="M489.5,-44.41C510.41,-39.4 536.21,-33.21 558.39,-27.89"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="559.38,-31.26 568.29,-25.52 557.75,-24.45 559.38,-31.26"/>
|
||||
</g>
|
||||
<!-- Node8->Node7 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>Node8->Node7</title>
|
||||
<path fill="none" stroke="midnightblue" d="M510.78,-16C519.64,-16 528.82,-16 537.84,-16"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="537.93,-19.5 547.93,-16 537.93,-12.5 537.93,-19.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 7.1 KiB |
@@ -11,7 +11,7 @@
|
||||
<area shape="rect" id="node6" href="$d2/d3b/namespaceqr__algorithm.html#ab1ac74497ffb2101040cc1efe3546de8" title=" " alt="" coords="433,124,620,151"/>
|
||||
<area shape="rect" id="node7" href="$d2/d3b/namespaceqr__algorithm.html#ad16da2183db22378435042f26af43d5f" title=" " alt="" coords="668,99,837,125"/>
|
||||
<area shape="rect" id="node10" href="$d2/d3b/namespaceqr__algorithm.html#a5422c76bfa322620de611083bd518d71" title=" " alt="" coords="670,149,835,176"/>
|
||||
<area shape="rect" id="node8" href="/Users/runner/runners/2.263.0/work/C-Plus-Plus/C-Plus-Plus/doc/cppreference-doxygen-web.tag.xml$cpp/numeric/math/sqrt.html#" title=" " alt="" coords="931,73,1002,100"/>
|
||||
<area shape="rect" id="node9" href="$d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" title=" " alt="" coords="885,124,1048,151"/>
|
||||
<area shape="rect" id="node8" href="/Users/runner/runners/2.263.0/work/C-Plus-Plus/C-Plus-Plus/doc/cppreference-doxygen-web.tag.xml$cpp/numeric/math/sqrt.html#" title=" " alt="" coords="931,99,1002,125"/>
|
||||
<area shape="rect" id="node9" href="$d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" title=" " alt="" coords="885,149,1048,176"/>
|
||||
<area shape="rect" id="node13" href="/Users/runner/runners/2.263.0/work/C-Plus-Plus/C-Plus-Plus/doc/cppreference-doxygen-web.tag.xml$cpp/io/manip/endl.html#" title=" " alt="" coords="283,157,355,184"/>
|
||||
</map>
|
||||
|
||||
@@ -1 +1 @@
|
||||
059a634ce09b1a75d5fc3b20aef7134a
|
||||
4c3309a6cf4431f5deeea003b3ce2c73
|
||||
@@ -105,7 +105,7 @@ var sectionId = 'dynsection-2';
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node11 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>Node1->Node11</title>
|
||||
<path fill="none" stroke="midnightblue" d="M32.54,-95.43C43.27,-87.41 59.29,-75.9 74,-67 76.63,-65.41 79.42,-63.82 82.23,-62.28"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="83.93,-65.33 91.14,-57.56 80.66,-59.14 83.93,-65.33"/>
|
||||
@@ -120,7 +120,7 @@ var sectionId = 'dynsection-2';
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node12 -->
|
||||
<g id="edge11" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>Node1->Node12</title>
|
||||
<path fill="none" stroke="midnightblue" d="M38.42,-108.84C51.2,-111.51 68.48,-115.12 82.97,-118.15"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="82.42,-121.61 92.92,-120.23 83.85,-114.76 82.42,-121.61"/>
|
||||
@@ -135,7 +135,7 @@ var sectionId = 'dynsection-2';
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node14 -->
|
||||
<g id="edge14" class="edge">
|
||||
<g id="edge15" class="edge">
|
||||
<title>Node1->Node14</title>
|
||||
<path fill="none" stroke="midnightblue" d="M38.42,-101.16C51.2,-98.49 68.48,-94.88 82.97,-91.85"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="83.85,-95.24 92.92,-89.77 82.42,-88.39 83.85,-95.24"/>
|
||||
@@ -150,7 +150,7 @@ var sectionId = 'dynsection-2';
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node15 -->
|
||||
<g id="edge17" class="edge">
|
||||
<g id="edge18" class="edge">
|
||||
<title>Node1->Node15</title>
|
||||
<path fill="none" stroke="midnightblue" d="M24.8,-95.48C33.05,-79.9 51.24,-48.71 74,-29 75.69,-27.54 77.5,-26.16 79.39,-24.85"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="81.26,-27.82 88,-19.64 77.63,-21.83 81.26,-27.82"/>
|
||||
@@ -234,34 +234,40 @@ var sectionId = 'dynsection-2';
|
||||
<g id="node8" class="node">
|
||||
<title>Node8</title>
|
||||
<g id="a_node8"><a target="_blank" xlink:href="http://en.cppreference.com/w/cpp/numeric/math/sqrt.html#" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="694.5,-139.5 694.5,-158.5 747.5,-158.5 747.5,-139.5 694.5,-139.5"/>
|
||||
<text text-anchor="middle" x="721" y="-146.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
<polygon fill="white" stroke="black" points="694.5,-120.5 694.5,-139.5 747.5,-139.5 747.5,-120.5 694.5,-120.5"/>
|
||||
<text text-anchor="middle" x="721" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node7->Node8 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>Node7->Node8</title>
|
||||
<path fill="none" stroke="midnightblue" d="M624.14,-137.51C644.35,-139.93 666.07,-142.53 683.71,-144.65"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="683.78,-148.18 694.12,-145.9 684.61,-141.23 683.78,-148.18"/>
|
||||
<path fill="none" stroke="midnightblue" d="M624.14,-130C644.35,-130 666.07,-130 683.71,-130"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="684.12,-133.5 694.12,-130 684.12,-126.5 684.12,-133.5"/>
|
||||
</g>
|
||||
<!-- Node9 -->
|
||||
<g id="node9" class="node">
|
||||
<title>Node9</title>
|
||||
<g id="a_node9"><a xlink:href="../../d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="660,-101.5 660,-120.5 782,-120.5 782,-101.5 660,-101.5"/>
|
||||
<text text-anchor="middle" x="721" y="-108.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
<polygon fill="white" stroke="black" points="660,-82.5 660,-101.5 782,-101.5 782,-82.5 660,-82.5"/>
|
||||
<text text-anchor="middle" x="721" y="-89.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node7->Node9 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>Node7->Node9</title>
|
||||
<path fill="none" stroke="midnightblue" d="M624.14,-122.49C632.6,-121.48 641.32,-120.43 649.9,-119.4"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="650.37,-122.87 659.88,-118.21 649.53,-115.92 650.37,-122.87"/>
|
||||
<path fill="none" stroke="midnightblue" d="M601.5,-120.41C622.41,-115.4 648.21,-109.21 670.39,-103.89"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="671.38,-107.26 680.29,-101.52 669.75,-100.45 671.38,-107.26"/>
|
||||
</g>
|
||||
<!-- Node10->Node9 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>Node10->Node9</title>
|
||||
<path fill="none" stroke="midnightblue" d="M622.78,-92C631.64,-92 640.82,-92 649.84,-92"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="649.93,-95.5 659.93,-92 649.93,-88.5 649.93,-95.5"/>
|
||||
</g>
|
||||
<!-- Node12->Node4 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge13" class="edge">
|
||||
<title>Node12->Node4</title>
|
||||
<path fill="none" stroke="midnightblue" d="M131.19,-124.9C143.2,-125.49 159.66,-126.3 175.91,-127.11"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="175.81,-130.61 185.97,-127.6 176.15,-123.61 175.81,-130.61"/>
|
||||
@@ -276,19 +282,19 @@ var sectionId = 'dynsection-2';
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node12->Node13 -->
|
||||
<g id="edge13" class="edge">
|
||||
<g id="edge14" class="edge">
|
||||
<title>Node12->Node13</title>
|
||||
<path fill="none" stroke="midnightblue" d="M131.19,-118.31C148.87,-112.78 176.22,-104.23 198.34,-97.31"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="199.58,-100.59 208.08,-94.26 197.49,-93.91 199.58,-100.59"/>
|
||||
</g>
|
||||
<!-- Node14->Node4 -->
|
||||
<g id="edge15" class="edge">
|
||||
<g id="edge16" class="edge">
|
||||
<title>Node14->Node4</title>
|
||||
<path fill="none" stroke="midnightblue" d="M131.19,-92.59C145.06,-97.61 164.87,-104.78 183.45,-111.51"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="182.41,-114.86 193.01,-114.97 184.8,-108.28 182.41,-114.86"/>
|
||||
</g>
|
||||
<!-- Node14->Node13 -->
|
||||
<g id="edge16" class="edge">
|
||||
<g id="edge17" class="edge">
|
||||
<title>Node14->Node13</title>
|
||||
<path fill="none" stroke="midnightblue" d="M131.19,-86C148.79,-86 175.97,-86 198.04,-86"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="198.08,-89.5 208.08,-86 198.08,-82.5 198.08,-89.5"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 18 KiB |
@@ -59,7 +59,7 @@
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node11 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>Node1->Node11</title>
|
||||
<path fill="none" stroke="midnightblue" d="M32.54,-95.43C43.27,-87.41 59.29,-75.9 74,-67 76.63,-65.41 79.42,-63.82 82.23,-62.28"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="83.93,-65.33 91.14,-57.56 80.66,-59.14 83.93,-65.33"/>
|
||||
@@ -74,7 +74,7 @@
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node12 -->
|
||||
<g id="edge11" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>Node1->Node12</title>
|
||||
<path fill="none" stroke="midnightblue" d="M38.42,-108.84C51.2,-111.51 68.48,-115.12 82.97,-118.15"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="82.42,-121.61 92.92,-120.23 83.85,-114.76 82.42,-121.61"/>
|
||||
@@ -89,7 +89,7 @@
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node14 -->
|
||||
<g id="edge14" class="edge">
|
||||
<g id="edge15" class="edge">
|
||||
<title>Node1->Node14</title>
|
||||
<path fill="none" stroke="midnightblue" d="M38.42,-101.16C51.2,-98.49 68.48,-94.88 82.97,-91.85"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="83.85,-95.24 92.92,-89.77 82.42,-88.39 83.85,-95.24"/>
|
||||
@@ -104,7 +104,7 @@
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node1->Node15 -->
|
||||
<g id="edge17" class="edge">
|
||||
<g id="edge18" class="edge">
|
||||
<title>Node1->Node15</title>
|
||||
<path fill="none" stroke="midnightblue" d="M24.8,-95.48C33.05,-79.9 51.24,-48.71 74,-29 75.69,-27.54 77.5,-26.16 79.39,-24.85"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="81.26,-27.82 88,-19.64 77.63,-21.83 81.26,-27.82"/>
|
||||
@@ -188,34 +188,40 @@
|
||||
<g id="node8" class="node">
|
||||
<title>Node8</title>
|
||||
<g id="a_node8"><a target="_blank" xlink:href="http://en.cppreference.com/w/cpp/numeric/math/sqrt.html#" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="694.5,-139.5 694.5,-158.5 747.5,-158.5 747.5,-139.5 694.5,-139.5"/>
|
||||
<text text-anchor="middle" x="721" y="-146.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
<polygon fill="white" stroke="black" points="694.5,-120.5 694.5,-139.5 747.5,-139.5 747.5,-120.5 694.5,-120.5"/>
|
||||
<text text-anchor="middle" x="721" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">std::sqrt</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node7->Node8 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>Node7->Node8</title>
|
||||
<path fill="none" stroke="midnightblue" d="M624.14,-137.51C644.35,-139.93 666.07,-142.53 683.71,-144.65"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="683.78,-148.18 694.12,-145.9 684.61,-141.23 683.78,-148.18"/>
|
||||
<path fill="none" stroke="midnightblue" d="M624.14,-130C644.35,-130 666.07,-130 683.71,-130"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="684.12,-133.5 694.12,-130 684.12,-126.5 684.12,-133.5"/>
|
||||
</g>
|
||||
<!-- Node9 -->
|
||||
<g id="node9" class="node">
|
||||
<title>Node9</title>
|
||||
<g id="a_node9"><a xlink:href="../../d2/d3b/namespaceqr__algorithm.html#a8ea313a1a1b5f9d0e3e332c29c6446ec" target="_top" xlink:title=" ">
|
||||
<polygon fill="white" stroke="black" points="660,-101.5 660,-120.5 782,-120.5 782,-101.5 660,-101.5"/>
|
||||
<text text-anchor="middle" x="721" y="-108.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
<polygon fill="white" stroke="black" points="660,-82.5 660,-101.5 782,-101.5 782,-82.5 660,-82.5"/>
|
||||
<text text-anchor="middle" x="721" y="-89.5" font-family="Helvetica,sans-Serif" font-size="10.00">qr_algorithm::vector_dot</text>
|
||||
</a>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node7->Node9 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>Node7->Node9</title>
|
||||
<path fill="none" stroke="midnightblue" d="M624.14,-122.49C632.6,-121.48 641.32,-120.43 649.9,-119.4"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="650.37,-122.87 659.88,-118.21 649.53,-115.92 650.37,-122.87"/>
|
||||
<path fill="none" stroke="midnightblue" d="M601.5,-120.41C622.41,-115.4 648.21,-109.21 670.39,-103.89"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="671.38,-107.26 680.29,-101.52 669.75,-100.45 671.38,-107.26"/>
|
||||
</g>
|
||||
<!-- Node10->Node9 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>Node10->Node9</title>
|
||||
<path fill="none" stroke="midnightblue" d="M622.78,-92C631.64,-92 640.82,-92 649.84,-92"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="649.93,-95.5 659.93,-92 649.93,-88.5 649.93,-95.5"/>
|
||||
</g>
|
||||
<!-- Node12->Node4 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge13" class="edge">
|
||||
<title>Node12->Node4</title>
|
||||
<path fill="none" stroke="midnightblue" d="M131.19,-124.9C143.2,-125.49 159.66,-126.3 175.91,-127.11"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="175.81,-130.61 185.97,-127.6 176.15,-123.61 175.81,-130.61"/>
|
||||
@@ -230,19 +236,19 @@
|
||||
</g>
|
||||
</g>
|
||||
<!-- Node12->Node13 -->
|
||||
<g id="edge13" class="edge">
|
||||
<g id="edge14" class="edge">
|
||||
<title>Node12->Node13</title>
|
||||
<path fill="none" stroke="midnightblue" d="M131.19,-118.31C148.87,-112.78 176.22,-104.23 198.34,-97.31"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="199.58,-100.59 208.08,-94.26 197.49,-93.91 199.58,-100.59"/>
|
||||
</g>
|
||||
<!-- Node14->Node4 -->
|
||||
<g id="edge15" class="edge">
|
||||
<g id="edge16" class="edge">
|
||||
<title>Node14->Node4</title>
|
||||
<path fill="none" stroke="midnightblue" d="M131.19,-92.59C145.06,-97.61 164.87,-104.78 183.45,-111.51"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="182.41,-114.86 193.01,-114.97 184.8,-108.28 182.41,-114.86"/>
|
||||
</g>
|
||||
<!-- Node14->Node13 -->
|
||||
<g id="edge16" class="edge">
|
||||
<g id="edge17" class="edge">
|
||||
<title>Node14->Node13</title>
|
||||
<path fill="none" stroke="midnightblue" d="M131.19,-86C148.79,-86 175.97,-86 198.04,-86"/>
|
||||
<polygon fill="midnightblue" stroke="midnightblue" points="198.08,-89.5 208.08,-86 198.08,-82.5 198.08,-89.5"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 13 KiB |