Skip to content

Commit

Permalink
deploy: 6582631
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Oct 15, 2023
1 parent 1845d8f commit 8ce9ff5
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 6 deletions.
19 changes: 19 additions & 0 deletions classsymtensor_1_1SymmetricTensor.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ <h3>Contents</h3>
<li><a href="#base-classes">Base classes</a></li>
<li><a href="#pub-types">Public types</a></li>
<li><a href="#pub-static-attribs">Public static variables</a></li>
<li><a href="#pub-attribs">Public variables</a></li>
<li><a href="#constructors">Constructors</a></li>
<li><a href="#member-access">Member access</a></li>
<li><a href="#tensor-properties">Tensor properties</a></li>
Expand Down Expand Up @@ -156,6 +157,15 @@ <h2><a href="#pub-static-attribs">Public static variables</a></h2>
<dd></dd>
</dl>
</section>
<section id="pub-attribs">
<h2><a href="#pub-attribs">Public variables</a></h2>
<dl class="m-doc">
<dt>
std::array&lt;S, NumUniqueValues&gt; <a href="classsymtensor_1_1SymmetricTensorBase.html#a31b47aa21078a00cc2e2578e9ff62742" class="m-doc">_data</a>
</dt>
<dd></dd>
</dl>
</section>
<section id="constructors">
<h2><a href="#constructors">Constructors</a></h2>
<dl class="m-doc">
Expand Down Expand Up @@ -978,6 +988,15 @@ <h3>
static std::size_t symtensor::<wbr />SymmetricTensor&lt;S, D, R, I&gt;::<wbr /><a href="#a2bb2e35b15c1fccf0c45174f27bc9a01" class="m-doc-self">NumUniqueValues</a> <span class="m-label m-primary">constexpr</span>
</h3>
</div></section>
<section class="m-doc-details" id="a31b47aa21078a00cc2e2578e9ff62742"><div>
<h3>
<div class="m-doc-include m-code m-inverted m-right-m m-text-right"><span class="cp">#include</span> <a class="cpf" href="SymmetricTensorBase_8h.html">&lt;symtensor/SymmetricTensorBase.h&gt;</a></div>
<div class="m-doc-template">
template&lt;typename S, std::size_t D, std::size_t R, typename I&gt;
</div>
std::array&lt;S, NumUniqueValues&gt; symtensor::<wbr />SymmetricTensor&lt;S, D, R, I&gt;::<wbr /><a href="#a31b47aa21078a00cc2e2578e9ff62742" class="m-doc-self">_data</a>
</h3>
</div></section>
</section>
</div>
</div>
Expand Down
67 changes: 67 additions & 0 deletions namespacesymtensor.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ <h3>Contents</h3>
Reference
<ul>
<li><a href="#nested-classes">Classes</a></li>
<li><a href="#typedef-members">Typedefs</a></li>
</ul>
</li>
</ul>
Expand Down Expand Up @@ -96,6 +97,72 @@ <h2><a href="#nested-classes">Classes</a></h2>
<dd>Symmetric tensor base-type for use with CRTP implementations.</dd>
</dl>
</section>
<section id="typedef-members">
<h2><a href="#typedef-members">Typedefs</a></h2>
<dl class="m-doc">
<dt>
<div class="m-doc-template">template&lt;class ST, std::size_t R&gt;</div>
using <a href="#a68e34bb9b75d60c4c11a5931046deb31" class="m-doc">ReplaceRank</a> = typename ReplaceRankHelper&lt;R, ST&gt;::type
</dt>
<dd>Produces a type which modifies the rank of a symmetric tensor.</dd>
<dt>
<div class="m-doc-template">template&lt;class ST&gt;</div>
using <a href="#a33bccc62448a25eabe93f15595800cb7" class="m-doc">NextHigherRank</a> = <a href="namespacesymtensor.html#a68e34bb9b75d60c4c11a5931046deb31" class="m-doc">ReplaceRank</a>&lt;ST, ST::Rank+1&gt;
</dt>
<dd>Given a symmetric tensor type, finds the symmetric tensor of the next higher rank.</dd>
</dl>
</section>
<section>
<h2>Typedef documentation</h2>
<section class="m-doc-details" id="a68e34bb9b75d60c4c11a5931046deb31"><div>
<h3>
<div class="m-doc-include m-code m-inverted m-right-m m-text-right"><span class="cp">#include</span> <a class="cpf" href="SymmetricTensorBase_8h.html">&lt;symtensor/SymmetricTensorBase.h&gt;</a></div>
<div class="m-doc-template">
template&lt;class ST, std::size_t R&gt;
</div>
using symtensor::<wbr /><a href="#a68e34bb9b75d60c4c11a5931046deb31" class="m-doc-self">ReplaceRank</a> = typename ReplaceRankHelper&lt;R, ST&gt;::type
</h3>
<p>Produces a type which modifies the rank of a symmetric tensor.</p>
<table class="m-table m-fullwidth m-flat">
<thead>
<tr><th colspan="2">Template parameters</th></tr>
</thead>
<tbody>
<tr>
<td style="width: 1%">ST</td>
<td>symmetric tensor type to replace the rank of</td>
</tr>
<tr>
<td>R</td>
<td>the new rank</td>
</tr>
</tbody>
</table>
<p>All properties of the symmetric tensor ST are preserved aside from the rank. The type of <code class="m-code"><span class="n">ReplaceRank</span><span class="o">&lt;</span><span class="n">SymmetricTensor3f</span><span class="o">&lt;</span><span class="mi">3</span><span class="o">&gt;</span><span class="p">,</span><span class="w"> </span><span class="mi">5</span><span class="o">&gt;</span></code> is equivalent to <code class="m-code"><span class="n">SymmetricTensor3f</span><span class="o">&lt;</span><span class="mi">5</span><span class="o">&gt;</span></code>.</p>
</div></section>
<section class="m-doc-details" id="a33bccc62448a25eabe93f15595800cb7"><div>
<h3>
<div class="m-doc-include m-code m-inverted m-right-m m-text-right"><span class="cp">#include</span> <a class="cpf" href="SymmetricTensorBase_8h.html">&lt;symtensor/SymmetricTensorBase.h&gt;</a></div>
<div class="m-doc-template">
template&lt;class ST&gt;
</div>
using symtensor::<wbr /><a href="#a33bccc62448a25eabe93f15595800cb7" class="m-doc-self">NextHigherRank</a> = <a href="namespacesymtensor.html#a68e34bb9b75d60c4c11a5931046deb31" class="m-doc">ReplaceRank</a>&lt;ST, ST::Rank+1&gt;
</h3>
<p>Given a symmetric tensor type, finds the symmetric tensor of the next higher rank.</p>
<table class="m-table m-fullwidth m-flat">
<thead>
<tr><th colspan="2">Template parameters</th></tr>
</thead>
<tbody>
<tr>
<td style="width: 1%">ST</td>
<td>a symmetric tensor</td>
</tr>
</tbody>
</table>
<p>All properties of the symmetric tensor ST are preserved aside from the rank. The type of <code class="m-code"><span class="n">NextHigherRank</span><span class="o">&lt;</span><span class="n">SymmetricTensor3f</span><span class="o">&lt;</span><span class="mi">3</span><span class="o">&gt;&gt;</span></code> is equivalent to <code class="m-code"><span class="n">SymmetricTensor3f</span><span class="o">&lt;</span><span class="mi">4</span><span class="o">&gt;</span></code>.</p>
</div></section>
</section>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion searchdata-v2.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,11 @@
--search-overlay-color: var(--header-background-color-landing);

--paragraph-indent: 0;
--paragraph-align: left;

}

.m-text-center img {
display: inline-block;
margin: 0.5em;
}
.m-text-center img:last-child {
.m-text-center img, .m-text-center img:last-child {
display: inline-block;
margin: 0.5em;
}

0 comments on commit 8ce9ff5

Please sign in to comment.