https://github.com/epiqc/ScaffCC
Revision b0b45207829d99335689c34b06c472a777bb465e authored by ajavadia on 08 July 2016, 14:14:06 UTC, committed by ajavadia on 08 July 2016, 14:14:06 UTC
1 parent dd16908
Raw File
Tip revision: b0b45207829d99335689c34b06c472a777bb465e authored by ajavadia on 08 July 2016, 14:14:06 UTC
small makefile and README changes
Tip revision: b0b4520
scaffold_lib.cpp

#include <string.h>
#include <iostream>
#include <map>
#include <utility>

#ifndef __SCAFFOLD_LIB
#define __SCAFFOLD_LIB

unsigned int HGateCount = 0;
unsigned int TGateCount = 0;
unsigned int TdagGateCount = 0;
unsigned int XGateCount = 0;
unsigned int ZGateCount = 0;
unsigned int RzGateCount = 0;

void X (qbit *x) {
    std::cout << "\tX " << x->getName() << std::endl;
    XGateCount++;
}

#endif // __SCAFFOLD_LIB

int main() {
}

back to top