Deploying to gh-pages from @ ehw-fit/ariths-gen@87a7f2b8bb 🚀

This commit is contained in:
mrazekv 2021-06-23 11:48:08 +00:00
parent 0f6b1f432a
commit d21172764d

View File

@ -715,7 +715,7 @@ class ArithmeticCircuit():
Returns:
str: List of arithmetic circuit's output wire indexes.
"""
return "(" + ",".join([str(self.get_circuit_wire_index(o)) for o in self.out.bus[::-1]]) + ")"
return "(" + ",".join([str(self.get_circuit_wire_index(o)) for o in self.out.bus]) + ")"
# Generating flat CGP chromosome representation of circuit
def get_cgp_code_flat(self, file_object):
@ -1429,7 +1429,7 @@ that are later used for generation into various representations.</p></div>
Returns:
str: List of arithmetic circuit&#39;s output wire indexes.
&#34;&#34;&#34;
return &#34;(&#34; + &#34;,&#34;.join([str(self.get_circuit_wire_index(o)) for o in self.out.bus[::-1]]) + &#34;)&#34;
return &#34;(&#34; + &#34;,&#34;.join([str(self.get_circuit_wire_index(o)) for o in self.out.bus]) + &#34;)&#34;
# Generating flat CGP chromosome representation of circuit
def get_cgp_code_flat(self, file_object):
@ -2755,7 +2755,7 @@ the upper component from which function block has been invoked.</p>
Returns:
str: List of arithmetic circuit&#39;s output wire indexes.
&#34;&#34;&#34;
return &#34;(&#34; + &#34;,&#34;.join([str(self.get_circuit_wire_index(o)) for o in self.out.bus[::-1]]) + &#34;)&#34;</code></pre>
return &#34;(&#34; + &#34;,&#34;.join([str(self.get_circuit_wire_index(o)) for o in self.out.bus]) + &#34;)&#34;</code></pre>
</details>
</dd>
<dt id="ariths_gen.core.arithmetic_circuits.arithmetic_circuit.ArithmeticCircuit.get_parameters_cgp"><code class="name flex">