Dan Blackwell
Dan Blackwell
In fact, does this result in some testcases having a score of 0 because they ran too fast?
Have submitted a PR which should give the fully up to date count now.
Switched to `hashbrown` now, had originally just grep'd for `HashSet` and used the the first implementation I saw in the codebase sorry. I think you could improve the speed a...
@addisoncrump I agree that moving the update into `append_metadata` is a better solution; and we are already iterating the `history_map` once there IIRC - so we can save one full...
Maybe it's a philosophical question, but if hitting a particular edge always causes a crash, should we not count that edge as covered?
Ok, have ran that and it reordered one import. Just waiting on CI now.
I've also added a debug_assert as I think that negative and infinite values would break the scheduler.
Just to add a note here; trying to install `matplotlib==2.2.5` may be tricky on newer Linux setups, as the pip wheel tries to use `platform.linux_distribution` which was removed in python3.8...
Just a note that in the meantime if anyone wants to run `generate_report.py` locally, the following docker setup worked for me: ``` # load up a docker image that has...
I agree that this is an unusual (perhaps unrealistic) use case, but interestingly the grammar defines a `BitstringLiteral` (https://openqasm.com/grammar/index.html#:~:text=%3B%0A156%0A157-,BitstringLiteral,-%3A%20%27%22%27%20), and Qiskit itself handles definitions with the bitstring being expanded as...