TritonVM / tasm-lib

A collection of functions written in Triton VM assembly (tasm)
Apache License 2.0
11 stars 2 forks source link

Improve Snippet Trait #47

Closed aszepieniec closed 6 months ago

aszepieniec commented 1 year ago

The current Snippet trait contains redundant methods.

Also, public_input and secret_input are not mutable vectors. As a result, you cannot string together multiple programs, each of which consume a part of public or secret input.

aszepieniec commented 1 year ago

Also: add a new argument output, which is also a mutable vector.