Renmusxd
Renmusxd
Docs updated in f9940ca - while making the invert macro found a bug in some code from 91e98a9 for making subcircuits. This (further) tells me that I need to work...
Should be resolved before 1.0 release ( Issue #6 ).
Some optimization code (all monte carlo based) included in 91e98a9149975cc7f8372deee205226d28c6bb42 but quality is low.
Simpler code to reproduce bug: ``` #!/usr/bin/env python3 import eventlet eventlet.monkey_patch() import sys from eventlet import wsgi def hello_world (env, start_response): start_response('200 OK', [('Content-Type', 'text/plain')]) return ['Hello, World!\r\n'] def main...
Hey Jon, I'm actually looking into making some examples of one-way computing using this library. It's possible in principle by reusing qubits as they are measured, but it's not ergonomic....