Skip to content

Commit

Permalink
Add Copyright for ticket: ZQS-1162 (#53)
Browse files Browse the repository at this point in the history
* Add Copyright for ticket: ZQS-1162

* Removed unnecessary copyright notices.

* Removed unnecessary copyright notices.
  • Loading branch information
mstechly authored Aug 18, 2022
1 parent 4924015 commit 124f5da
Show file tree
Hide file tree
Showing 17 changed files with 31 additions and 10 deletions.
3 changes: 3 additions & 0 deletions src/orquestra/quantum/api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
################################################################################
# © Copyright 2022 Zapata Computing Inc.
################################################################################
from .backend import QuantumBackend
from .estimation import EstimationTask
2 changes: 1 addition & 1 deletion src/orquestra/quantum/circuits/_builtin_gates.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
################################################################################
# © Copyright 2021 Zapata Computing Inc.
# © Copyright 2021-2022 Zapata Computing Inc.
################################################################################
from typing import Callable, Union

Expand Down
2 changes: 1 addition & 1 deletion src/orquestra/quantum/circuits/_matrices.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
################################################################################
# © Copyright 2021 Zapata Computing Inc.
# © Copyright 2021-2022 Zapata Computing Inc.
################################################################################
"""Definition of predefined gate matrices and related utility functions."""
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion src/orquestra/quantum/circuits/_testing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
################################################################################
# © Copyright 2021 Zapata Computing Inc.
# © Copyright 2021-2022 Zapata Computing Inc.
################################################################################
from typing import Tuple

Expand Down
2 changes: 1 addition & 1 deletion src/orquestra/quantum/circuits/symbolic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
################################################################################
# © Copyright 2021 Zapata Computing Inc.
# © Copyright 2021-2022 Zapata Computing Inc.
################################################################################
from ._sorting import natural_key, natural_key_fixed_names_order, natural_key_revlex
2 changes: 1 addition & 1 deletion src/orquestra/quantum/circuits/symbolic/_sorting.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
################################################################################
# © Copyright 2021 Zapata Computing Inc.
# © Copyright 2021-2022 Zapata Computing Inc.
################################################################################
"""Definitions of keys for various symbol orderings."""
import re
Expand Down
2 changes: 1 addition & 1 deletion src/orquestra/quantum/circuits/symbolic/expressions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
################################################################################
# © Copyright 2021 Zapata Computing Inc.
# © Copyright 2021-2022 Zapata Computing Inc.
################################################################################
"""Utilities for converting symbolic expressions between different dialects."""

Expand Down
2 changes: 1 addition & 1 deletion src/orquestra/quantum/circuits/symbolic/translations.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
################################################################################
# © Copyright 2021 Zapata Computing Inc.
# © Copyright 2021-2022 Zapata Computing Inc.
################################################################################
"""Utilities related to translation of symbolic expressions."""
from functools import singledispatch
Expand Down
2 changes: 1 addition & 1 deletion src/orquestra/quantum/decompositions/_decomposition.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
################################################################################
# © Copyright 2021 Zapata Computing Inc.
# © Copyright 2021-2022 Zapata Computing Inc.
################################################################################
from abc import abstractmethod
from typing import Iterable, Protocol, Sequence, TypeVar
Expand Down
3 changes: 3 additions & 0 deletions src/orquestra/quantum/measurements/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
################################################################################
# © Copyright 2022 Zapata Computing Inc.
################################################################################
from .expectation_values import (
ExpectationValues,
concatenate_expectation_values,
Expand Down
3 changes: 3 additions & 0 deletions src/orquestra/quantum/measurements/expectation_values.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
################################################################################
# © Copyright 2022 Zapata Computing Inc.
################################################################################
import json
from typing import Any, Dict, Iterable, List, Optional, Union, cast

Expand Down
3 changes: 3 additions & 0 deletions src/orquestra/quantum/measurements/parities.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
################################################################################
# © Copyright 2022 Zapata Computing Inc.
################################################################################
import json
from collections import Counter
from typing import Any, Dict, Iterable, List, Optional, Sequence, Tuple, Union
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
################################################################################
# © Copyright 2021 Zapata Computing Inc.
# © Copyright 2021-2022 Zapata Computing Inc.
################################################################################
from operator import mul

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
################################################################################
# © Copyright 2021 Zapata Computing Inc.
# © Copyright 2021-2022 Zapata Computing Inc.
################################################################################
"""Test cases have been generated using the code in
`orquestra.quantum.testing.generate_cases_for_backend.py`.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
################################################################################
# © Copyright 2022 Zapata Computing Inc.
################################################################################
import os

import numpy as np
Expand Down
3 changes: 3 additions & 0 deletions tests/orquestra/quantum/measurements/parities_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
################################################################################
# © Copyright 2022 Zapata Computing Inc.
################################################################################
import os

import numpy as np
Expand Down
3 changes: 3 additions & 0 deletions tests/orquestra/quantum/operators/_operators_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
################################################################################
# © Copyright 2022 Zapata Computing Inc.
################################################################################
from itertools import product
from typing import List
from unittest.mock import Mock
Expand Down

0 comments on commit 124f5da

Please sign in to comment.