DeserializeLayeredCircuit takes a byte buffer and returns a pointer to a layered.RootCircuit which represents a deserialized layered circuit.
(buf []byte)
| 107 | // DeserializeLayeredCircuit takes a byte buffer and returns a pointer to a layered.RootCircuit |
| 108 | // which represents a deserialized layered circuit. |
| 109 | func DeserializeLayeredCircuit(buf []byte) *layered.RootCircuit { |
| 110 | return layered.DeserializeRootCircuit(buf) |
| 111 | } |
| 112 | |
| 113 | // DeserializeInputSolver takes a byte buffer and returns a pointer to an ir.InputSolver |
| 114 | // which represents a deserialized input solver. |
no test coverage detected