ZoKrates icon indicating copy to clipboard operation
ZoKrates copied to clipboard

catch expressions that are recomputed twice

Open stefandeml opened this issue 5 years ago • 0 comments

for example here:

x = a * b + 1
y = a * b + 2
z = x + y

the optimizer could reasonably catch we're computing a*b twice, and reuse the result

stefandeml avatar Mar 20 '19 16:03 stefandeml