DefinitelyTyped/types/jsqubits/jsqubits-tests.ts
kamakiri_ys cd095172b8 Add jsqubits type definition (#36805)
* add jsqubits type definition

* drop declare module
2019-07-10 14:00:34 -07:00

9 lines
279 B
TypeScript

import * as jsq from 'jsqubits';
const q0 = jsq.jsqubits("|0>").hadamard(0);
const q1 = new jsq.jsqubits.QState(1, [jsq.jsqubits.Complex.ONE, jsq.jsqubits.Complex.ZERO]);
const bell = q1.tensorProduct(q0).cnot(0, 1);
const result = bell.measure(0);
result.newState.measure(1);