From d21172764dcddc54a72d65adc058c805b6b61428 Mon Sep 17 00:00:00 2001 From: mrazekv Date: Wed, 23 Jun 2021 11:48:08 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20ehw-fit/?= =?UTF-8?q?ariths-gen@87a7f2b8bbb02b892df0f35417902765250eb3e9=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/arithmetic_circuits/arithmetic_circuit.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/arithmetic_circuits/arithmetic_circuit.html b/core/arithmetic_circuits/arithmetic_circuit.html index 389fa3f..dfd5143 100644 --- a/core/arithmetic_circuits/arithmetic_circuit.html +++ b/core/arithmetic_circuits/arithmetic_circuit.html @@ -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.

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): @@ -2755,7 +2755,7 @@ the upper component from which function block has been invoked.

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]) + ")"