Vadym Kliuchnikov

Results 7 issues of Vadym Kliuchnikov

The code below ``` // Prepares (|00> + |11>)/Sqrt(2) given input qubits are both |0> module PrepareEntangledPair( qbit a, qbit b ) { H(a); CNOT(a,b); } // Un-prepares (|00> +...

The following code ``` c int main() { qbit q[2]; cbit mres[2]; mres[0] = MeasZ(q[0]); mres[1] = MeasZ(q[1]); if( mres[0] == 1 ) { Z(q[0]); } if( mres[1] == 1)...

Running `scaffold.sh -f ` for the following file: ```c int main() { qbit q[1]; cbit c = MeasZ(q[0]); return 0; } ``` causes Segmentation fault : ``` measure_qubit.scaffold [Scaffold.makefile] Compiling...

## Describe the enhancement request Currently hello world sample takes around 7 times longer for Q# project to compile than for C# project. ## To Reproduce Run the following PowerShell...

enhancement
performance

## Describe the enhancement request Currently building Q# Standard Library takes 55 seconds and building it together with tests takes 01:27. This might not seem like a long time for...

enhancement
performance

I'd like to check if two lattices L_1, L_2 over a number filed are isomorphic with the restriction that the isomorphism is an automorphism group of the third lattice L_3....

**Is your feature request related to a problem? Please describe.** In some areas of quantum computing it is common to use post-selected measurement gates to explain why a circuit works...