You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can use parse_program to convert a String into a Program but no way to turn it back into an object that can really be used outside of this crate. The inner quilc_program is just a pointer, with no way to de-reference it or get at the data inside. This means, other than print_program, which prints directly to stdout, we have no way of converting a compiled program into, say, a quil_rs::Program
&compiled_program = Program(0x0000000000000002,)
The text was updated successfully, but these errors were encountered:
We can use
parse_program
to convert aString
into aProgram
but no way to turn it back into an object that can really be used outside of this crate. The innerquilc_program
is just a pointer, with no way to de-reference it or get at the data inside. This means, other thanprint_program
, which prints directly tostdout
, we have no way of converting a compiled program into, say, aquil_rs::Program
The text was updated successfully, but these errors were encountered: