-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b4dbfa
commit b66efa2
Showing
7 changed files
with
52 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 2024 Xanadu Quantum Technologies Inc. | ||
|
||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
|
||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
"""Tests for the ``Pgate`` class.""" | ||
|
||
# pylint: disable=missing-function-docstring, expression-not-assigned | ||
|
||
import pytest | ||
|
||
from mrmustard import math | ||
from mrmustard.lab_dev.states import Vacuum | ||
from mrmustard.lab_dev.transformations import Pgate | ||
|
||
|
||
class TestPgate: | ||
r""" | ||
Tests for the ``Pgate`` class. | ||
""" | ||
|
||
def test_init(self): | ||
"Tests the Pgate initialization." | ||
up = Pgate([0, 1], 0.3) | ||
assert up.modes == [0, 1] | ||
assert up.name == "Pgate" | ||
assert up.shearing.value == 0.3 | ||
|
||
@pytest.mark.parametrize("s", [0.1, 0.5, 1]) | ||
def test_application(self, s): | ||
"Tests if Pgate is being applied correctly." | ||
up = Pgate([0], s) | ||
rho = Vacuum([0]) >> up | ||
cov, _, _ = rho.phase_space(s=0) | ||
temp = math.astensor([[1, 0], [s, 1]], dtype="complex128") | ||
assert math.allclose(cov[0], temp @ math.eye(2) @ temp.T / 2) |