From e52ec9ed61b6dd3067c10974417cc61dd1de3dbb Mon Sep 17 00:00:00 2001 From: alexmadison Date: Wed, 2 Mar 2022 11:51:45 +0100 Subject: [PATCH] renamed var in vtree for consciences --- dataflow_neuro/treegates.act | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dataflow_neuro/treegates.act b/dataflow_neuro/treegates.act index c075e44..f4d153c 100644 --- a/dataflow_neuro/treegates.act +++ b/dataflow_neuro/treegates.act @@ -380,16 +380,16 @@ defproc vtree (std::data::Mx1of2? in; bool! out; power supply) { // OR layer for making OR between true and false of in (they are then sent to Ctree) OR2_X1 OR2_tf[N]; - ctree myctree; + ctree ct; (l:N: OR2_tf[l].a = in.d[l].t; OR2_tf[l].b = in.d[l].f; - OR2_tf[l].y = myctree.in[l]; + OR2_tf[l].y = ct.in[l]; OR2_tf[l].vdd = supply.vdd; OR2_tf[l].vss = supply.vss; ) - myctree.supply = supply; - out = myctree.out; + ct.supply = supply; + out = ct.out; } export template defproc sigbuf (bool? in; bool! out[N]; power supply)