Skip to content

Commit 843ba92

Browse files
committed
add copyright
1 parent ae20376 commit 843ba92

30 files changed

+166
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ d = 0.8
3131
# distance unit is angstrom
3232
h4 = M(atom=[["H", 0, 0, d * i] for i in range(4)])
3333

34-
# setup
34+
# configuration
3535
uccsd = UCCSD(h4)
3636
# calculate
3737
uccsd.kernel()

README_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ d = 0.8
2929
# 距离单位是埃
3030
h4 = M(atom=[["H", 0, 0, d * i] for i in range(4)])
3131

32-
# 设置
32+
# 配置
3333
uccsd = UCCSD(h4)
3434
# 计算
3535
uccsd.kernel()

tencirchem/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
__author__ = "TenCirChem Authors"
33
__creator__ = "Weitang Li"
44

5+
# Copyright (c) 2023. The TenCirChem Developers. All Rights Reserved.
6+
#
7+
# This file is distributed under ACADEMIC PUBLIC LICENSE
8+
# and WITHOUT ANY WARRANTY. See the LICENSE file for details.
9+
510
import os
611
import logging
712

tencirchem/constants.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Copyright (c) 2023. The TenCirChem Developers. All Rights Reserved.
2+
#
3+
# This file is distributed under ACADEMIC PUBLIC LICENSE
4+
# and WITHOUT ANY WARRANTY. See the LICENSE file for details.
5+
16
import numpy as np
27

38
a = np.array([[0, 1], [0, 0]])

tencirchem/dynamic/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2023. The TenCirChem Developers. All Rights Reserved.
2+
#
3+
# This file is distributed under ACADEMIC PUBLIC LICENSE
4+
# and WITHOUT ANY WARRANTY. See the LICENSE file for details.
5+
6+
17
from tencirchem.dynamic.model import sbm, pyrazine
28
from tencirchem.dynamic.transform import qubit_encode_op, qubit_encode_basis
39
from tencirchem.dynamic.time_derivative import get_ansatz, get_jacobian_func, get_deriv
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Copyright (c) 2023. The TenCirChem Developers. All Rights Reserved.
2+
#
3+
# This file is distributed under ACADEMIC PUBLIC LICENSE
4+
# and WITHOUT ANY WARRANTY. See the LICENSE file for details.
5+
6+

tencirchem/dynamic/model/pyrazine.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2023. The TenCirChem Developers. All Rights Reserved.
2+
#
3+
# This file is distributed under ACADEMIC PUBLIC LICENSE
4+
# and WITHOUT ANY WARRANTY. See the LICENSE file for details.
5+
6+
17
import logging
28
from itertools import permutations as permut
39
from itertools import product

tencirchem/dynamic/model/sbm.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2023. The TenCirChem Developers. All Rights Reserved.
2+
#
3+
# This file is distributed under ACADEMIC PUBLIC LICENSE
4+
# and WITHOUT ANY WARRANTY. See the LICENSE file for details.
5+
6+
17
from renormalizer import BasisHalfSpin, BasisSHO, Op, Model, Mpo, Mps
28

39

tencirchem/dynamic/time_derivative.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2023. The TenCirChem Developers. All Rights Reserved.
2+
#
3+
# This file is distributed under ACADEMIC PUBLIC LICENSE
4+
# and WITHOUT ANY WARRANTY. See the LICENSE file for details.
5+
6+
17
import logging
28

39
import numpy as np

tencirchem/dynamic/time_evolution.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2023. The TenCirChem Developers. All Rights Reserved.
2+
#
3+
# This file is distributed under ACADEMIC PUBLIC LICENSE
4+
# and WITHOUT ANY WARRANTY. See the LICENSE file for details.
5+
6+
17
import time
28
import logging
39
from functools import partial

0 commit comments

Comments
 (0)