crocs-muni / eacirc

Automatic problem solver based on circuit-like representation and genetic programming
13 stars 8 forks source link

Gate function labeling #190

Closed xtracko closed 8 years ago

xtracko commented 8 years ago

In file eacirc/circuit/gate/GateCommonFunctions.cpp are wrongly labeled functions when writing to file.

    case FNC_SHIR:  return "ROTR";
    case FNC_ROTL:  return "CYCL";
    case FNC_ROTR:  return "CYCR";
    case FNC_EQ:    return "EQ";
mukrop commented 8 years ago

Well, not wrongly but I caanot understand either why the naming convention is different internally and exported. Feel free to make it consistant again. On Mar 3, 2016 11:48 AM, "Jiří Novotný" notifications@github.com wrote:

In file eacirc/circuit/gate/GateCommonFunctions.cpp are wrongly labeled functions when writing to file.

case FNC_SHIR:  return "ROTR";
case FNC_ROTL:  return "CYCL";
case FNC_ROTR:  return "CYCR";
case FNC_EQ:    return "EQ";

— Reply to this email directly or view it on GitHub https://github.com/crocs-muni/eacirc/issues/190.