xp1632 / VPE_IP

0 stars 0 forks source link

`eval()` in 【Ori VP_code_generator】 #85

Open xp1632 opened 1 month ago

xp1632 commented 1 month ago

image

xp1632 commented 1 month ago

What does eval() do?

nodeGenerator  = "(${input1},${input2}) => ${input1} + ${input2}"
# which if we eliminate the `$` as formatted is: 
nodeGenerator = "(input1,input2) => input1 + input2"

To Summarize:

from predefined string with ${input1} image

to functioning source code method image

xp1632 commented 1 month ago

However what we did in Pipeline is the backwards direction


from: image

to image

xp1632 commented 1 month ago

Conclusion