Is it possible to remove or modify the prefix of the inputs and outputs of operators in the generated code?
No, it is not possible to remove or modify the prefix of the inputs and outputs of the generated code. The thing is that the prefix for the nodes inputs and outputs is different whether you have chosen an expansion mode or the other for the code generation: • with the -noexp or -exp expansion mode (None or Selection option checked in the Expansion tab of the Settings window for the configuration), every input and output, as well as memories that might be handled in some nodes, are treated as belonging to the context of the node. Inputs are then prefixed with _I0_, _I1_, etc. and outputs are prefixed with _O0_, _O1_, etc. • with the -blockexp expansion mode (Block option checked in the Expansion tab of the Settings window for the configuration), the inputs and outputs of the Root node are treated as global variables and are not prefixed (they keep their name), whereas the inputs and outputs of all the other nodes are treated as local variables and are prefixed with _L0_, _L1_, etc. Thes