Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/XanaduAI/MrMustard into …
Browse files Browse the repository at this point in the history
…speed_up_tf_tests
  • Loading branch information
apchytr committed Oct 28, 2024
2 parents 19007a9 + 67b8624 commit 95d7f2a
Show file tree
Hide file tree
Showing 28 changed files with 3,013 additions and 2,472 deletions.
9 changes: 9 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
coverage:
status:
project:
default:
target: 89%
patch:
default:
target: auto
threshold: 0%
47 changes: 0 additions & 47 deletions .coveragerc

This file was deleted.

3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
* Loosen the upper-bound on `thewalrus` and upgrade it.
[(#454)](https://github.com/XanaduAI/MrMustard/pull/454)

* Update major version of `rich` dependency to version 13.
[(#512)](https://github.com/XanaduAI/MrMustard/pull/512)

### Bug fixes
* Fix the bug in the order of indices of the triples for DsMap CircuitComponent.
[(#385)](https://github.com/XanaduAI/MrMustard/pull/385)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PYTHON3 := $(shell which python3 2>/dev/null)
TESTRUNNER := -m pytest tests -p no:warnings
COVERAGE := --cov=mrmustard --cov-report=html:coverage_html_report --cov-append
COVERAGE := --cov=mrmustard --cov-report=html --cov-append

.PHONY: help
help:
Expand Down
23 changes: 13 additions & 10 deletions mrmustard/lab_dev/states/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@
The classes representing states in quantum circuits.
"""

from .base import *
from .coherent import *
from .displaced_squeezed import *
from .number import *
from .quadrature_eigenstate import *
from .squeezed_vacuum import *
from .thermal import *
from .two_mode_squeezed_vacuum import *
from .vacuum import *
from .sauron import *
from .base import State
from .ket import Ket
from .dm import DM

from .coherent import Coherent
from .displaced_squeezed import DisplacedSqueezed
from .number import Number
from .quadrature_eigenstate import QuadratureEigenstate
from .squeezed_vacuum import SqueezedVacuum
from .thermal import Thermal
from .two_mode_squeezed_vacuum import TwoModeSqueezedVacuum
from .vacuum import Vacuum
from .sauron import Sauron
Loading

0 comments on commit 95d7f2a

Please sign in to comment.