Skip to content
Snippets Groups Projects

BugFix of the fast_subs function in rng nodes.

Merged Markus Holzer requested to merge holzer/pystencils:bugfix_fast_subs_rng_node into master
Compare and
1 file
+ 1
1
Preferences
Compare changes
+ 1
1
@@ -61,7 +61,7 @@ class RNGBase(CustomCodeNode):
result.update(loop_counters)
return result
def fast_subs(self, _):
def fast_subs(self, *_):
return self # nothing to replace inside this node - would destroy intermediate "dummy" by re-creating them
def get_code(self, dialect, vector_instruction_set):