Quantum Computing Simulator
After playing with IBM's simulator and other simulators, I wanted to understand more into the way gates work. The only way, ofcourse, is to implement your own simulator.
Suprisingly, it is not hard to write a simulator from scratch. Following are some interesting cool features I have implemented, which I did not find in other simulators.
- Printing out a layered view of the states, along the planes of equal density for 1's
- In-built QFT
- In-built MEF (not complete)
- Random init of the states
- Templated test case for easier expermentation
Source code is at my Github repo. Please bear with my extremely minimal style of coding.