Revision 2eae3de9bbf082c02c75ac36289c4dbe27603162 authored by EPiQC on 25 July 2016, 02:36:17 UTC, committed by GitHub on 25 July 2016, 02:36:17 UTC
1 parent c577620
cat_state.n04.scaffold
module catN ( qbit *bit, const int n ) {
H( bit[0] );
for ( int i=1; i < n; i++ ) {
CNOT( bit[i], bit[i-1] );
}
}
module unCatN ( qbit *bit, const int n ) {
for ( int i=n-1; i > 0; i-- ) {
CNOT( bit[i], bit[i-1] );
}
H( bit[0] );
}
int main () {
qbit bits[4];
catN( bits, 4 );
return 0;
}

Computing file changes ...