pyscf 2.6.2__py3-none-macosx_11_0_arm64.whl → 2.7.0__py3-none-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyscf/__init__.py +2 -2
- pyscf/adc/__init__.py +3 -8
- pyscf/adc/dfadc.py +22 -6
- pyscf/adc/radc.py +106 -15
- pyscf/adc/radc_amplitudes.py +7 -1
- pyscf/adc/radc_ao2mo.py +4 -2
- pyscf/adc/radc_ea.py +524 -8
- pyscf/adc/radc_ip.py +492 -60
- pyscf/adc/radc_ip_cvs.py +4 -2
- pyscf/adc/uadc.py +116 -27
- pyscf/adc/uadc_amplitudes.py +215 -20
- pyscf/adc/uadc_ao2mo.py +30 -9
- pyscf/adc/uadc_ea.py +34 -44
- pyscf/adc/uadc_ip.py +9 -4
- pyscf/adc/uadc_ip_cvs.py +4 -1
- pyscf/agf2/__init__.py +2 -2
- pyscf/agf2/aux_space.py +1 -1
- pyscf/agf2/chkfile.py +1 -1
- pyscf/ao2mo/outcore.py +6 -4
- pyscf/cc/__init__.py +21 -3
- pyscf/cc/bccd.py +0 -46
- pyscf/cc/ccsd.py +16 -8
- pyscf/cc/uccsd.py +1 -1
- pyscf/data/elements.py +1 -1
- pyscf/df/__init__.py +2 -1
- pyscf/df/addons.py +79 -51
- pyscf/df/autoaux.py +191 -0
- pyscf/df/df.py +5 -1
- pyscf/df/grad/casscf.py +0 -41
- pyscf/df/hessian/rhf.py +2 -10
- pyscf/df/hessian/rks.py +1 -7
- pyscf/df/hessian/uhf.py +3 -13
- pyscf/df/hessian/uks.py +1 -8
- pyscf/df/incore.py +17 -5
- pyscf/dft/dks.py +1 -1
- pyscf/dft/libxc.py +65 -639
- pyscf/dft/numint.py +7 -3
- pyscf/dft/radi.py +39 -5
- pyscf/dft/rks.py +1 -1
- pyscf/dft/xc_deriv.py +1 -1
- pyscf/dft/xcfun.py +53 -2
- pyscf/eph/eph_fd.py +1 -1
- pyscf/eph/rhf.py +6 -36
- pyscf/eph/rks.py +0 -4
- pyscf/eph/uhf.py +1 -7
- pyscf/eph/uks.py +1 -7
- pyscf/fci/addons.py +117 -2
- pyscf/fci/cistring.py +1 -1
- pyscf/fci/direct_nosym.py +3 -3
- pyscf/fci/direct_spin0_symm.py +22 -43
- pyscf/fci/direct_spin1.py +65 -9
- pyscf/fci/direct_spin1_symm.py +49 -14
- pyscf/fci/direct_uhf.py +4 -4
- pyscf/fci/selected_ci_symm.py +1 -1
- pyscf/grad/lagrange.py +11 -3
- pyscf/grad/mp2.py +1 -1
- pyscf/grad/sacasscf.py +1 -1
- pyscf/grad/tdrks.py +1 -1
- pyscf/gto/basis/__init__.py +7 -0
- pyscf/gto/basis/bse.py +68 -15
- pyscf/gto/basis/parse_cp2k_pp.py +1 -1
- pyscf/gto/basis/parse_nwchem.py +1 -1
- pyscf/gto/basis/parse_nwchem_ecp.py +2 -1
- pyscf/gto/basis/sap_grasp_large.dat +2438 -0
- pyscf/gto/basis/sap_grasp_small.dat +1434 -0
- pyscf/gto/mole.py +99 -44
- pyscf/gw/gw_ac.py +2 -2
- pyscf/gw/gw_cd.py +2 -2
- pyscf/gw/rpa.py +2 -2
- pyscf/gw/ugw_ac.py +2 -2
- pyscf/gw/urpa.py +1 -1
- pyscf/hessian/rhf.py +30 -128
- pyscf/hessian/rks.py +1 -6
- pyscf/hessian/uhf.py +28 -138
- pyscf/hessian/uks.py +1 -8
- pyscf/lib/ao2mo/nr_ao2mo.c +1 -1
- pyscf/lib/ao2mo/nrr_ao2mo.c +1 -1
- pyscf/lib/ao2mo/r_ao2mo.c +1 -1
- pyscf/lib/cc/ccsd_pack.c +1 -1
- pyscf/lib/cc/ccsd_t.c +6 -6
- pyscf/lib/cc/uccsd_t.c +4 -4
- pyscf/lib/deps/include/XCFun/XCFunExport.h +1 -0
- pyscf/lib/dft/grid_common.c +1 -1
- pyscf/lib/dft/libxc_itrf.c +4 -1
- pyscf/lib/dft/xcfun_itrf.c +1 -1
- pyscf/lib/diis.py +1 -1
- pyscf/lib/exceptions.py +3 -0
- pyscf/lib/gto/fill_grids_int2c.c +11 -9
- pyscf/lib/gto/fill_int2e.c +7 -5
- pyscf/lib/gto/fill_r_4c.c +1 -1
- pyscf/lib/gto/ft_ao.c +1 -1
- pyscf/lib/gto/ft_ao.h +1 -1
- pyscf/lib/gto/gto.h +2 -2
- pyscf/lib/gto/nr_ecp.c +3 -2
- pyscf/lib/libagf2.dylib +0 -0
- pyscf/lib/libao2mo.dylib +0 -0
- pyscf/lib/libcc.dylib +0 -0
- pyscf/lib/libcgto.dylib +0 -0
- pyscf/lib/libcvhf.dylib +0 -0
- pyscf/lib/libdft.dylib +0 -0
- pyscf/lib/libfci.dylib +0 -0
- pyscf/lib/libmcscf.dylib +0 -0
- pyscf/lib/libnp_helper.dylib +0 -0
- pyscf/lib/libpbc.dylib +0 -0
- pyscf/lib/libri.dylib +0 -0
- pyscf/lib/libxc_itrf.dylib +0 -0
- pyscf/lib/libxcfun_itrf.dylib +0 -0
- pyscf/lib/linalg_helper.py +112 -192
- pyscf/lib/mcscf/fci_contract.c +2 -2
- pyscf/lib/misc.py +47 -14
- pyscf/lib/numpy_helper.py +1 -1
- pyscf/lib/pbc/nr_ecp.c +10 -3
- pyscf/lib/pbc/pbc.h +1 -1
- pyscf/lib/vhf/nr_sgx_direct.c +8 -6
- pyscf/lib/vhf/optimizer.c +2 -2
- pyscf/lo/iao.py +1 -1
- pyscf/lo/ibo.py +3 -3
- pyscf/lo/pipek_jacobi.py +1 -1
- pyscf/mcscf/__init__.py +2 -2
- pyscf/mcscf/addons.py +3 -3
- pyscf/mcscf/apc.py +2 -2
- pyscf/mcscf/casci.py +8 -6
- pyscf/mcscf/chkfile.py +70 -41
- pyscf/mcscf/dmet_cas.py +2 -2
- pyscf/mcscf/mc1step.py +62 -38
- pyscf/mcscf/newton_casscf.py +5 -5
- pyscf/mcscf/ucasci.py +1 -1
- pyscf/mcscf/umc1step.py +44 -25
- pyscf/md/integrators.py +3 -3
- pyscf/mp/mp2.py +6 -5
- pyscf/mp/ump2.py +7 -6
- pyscf/pbc/adc/kadc_rhf.py +1 -1
- pyscf/pbc/adc/kadc_rhf_amplitudes.py +2 -2
- pyscf/pbc/ao2mo/eris.py +1 -1
- pyscf/pbc/cc/kccsd_rhf.py +3 -3
- pyscf/pbc/cc/kccsd_t_rhf.py +2 -2
- pyscf/pbc/ci/kcis_rhf.py +2 -2
- pyscf/pbc/df/aft.py +2 -2
- pyscf/pbc/df/aft_ao2mo.py +1 -1
- pyscf/pbc/df/df.py +84 -11
- pyscf/pbc/df/df_jk.py +2 -1
- pyscf/pbc/df/fft.py +6 -2
- pyscf/pbc/df/fft_ao2mo.py +4 -0
- pyscf/pbc/df/fft_jk.py +11 -3
- pyscf/pbc/df/ft_ao.py +4 -3
- pyscf/pbc/df/gdf_builder.py +5 -4
- pyscf/pbc/df/incore.py +1 -1
- pyscf/pbc/df/mdf.py +6 -3
- pyscf/pbc/df/rsdf.py +2 -2
- pyscf/pbc/df/rsdf_builder.py +11 -6
- pyscf/pbc/df/rsdf_helper.py +1 -1
- pyscf/pbc/dft/cdft.py +5 -5
- pyscf/pbc/dft/multigrid/multigrid.py +19 -26
- pyscf/pbc/dft/multigrid/multigrid_pair.py +1 -1
- pyscf/pbc/dft/multigrid/pp.py +1 -1
- pyscf/pbc/dft/numint.py +30 -21
- pyscf/pbc/eph/eph_fd.py +1 -1
- pyscf/pbc/geomopt/geometric_solver.py +1 -1
- pyscf/pbc/gto/cell.py +37 -19
- pyscf/pbc/gto/ecp.py +12 -12
- pyscf/pbc/gto/eval_gto.py +2 -2
- pyscf/pbc/gto/pseudo/pp.py +1 -1
- pyscf/pbc/gw/krgw_ac.py +4 -4
- pyscf/pbc/gw/krgw_cd.py +4 -4
- pyscf/pbc/gw/kugw_ac.py +3 -3
- pyscf/pbc/lib/kpts_helper.py +4 -3
- pyscf/pbc/lib/linalg_helper.py +1 -1
- pyscf/pbc/mp/kmp2.py +1 -1
- pyscf/pbc/mpitools/mpi.py +1 -1
- pyscf/pbc/scf/addons.py +15 -11
- pyscf/pbc/scf/cphf.py +1 -1
- pyscf/pbc/scf/ghf.py +1 -1
- pyscf/pbc/scf/hf.py +21 -24
- pyscf/pbc/scf/kghf.py +33 -29
- pyscf/pbc/scf/khf.py +71 -26
- pyscf/pbc/scf/krohf.py +5 -7
- pyscf/pbc/scf/kuhf.py +53 -22
- pyscf/pbc/scf/rsjk.py +13 -9
- pyscf/pbc/scf/scfint.py +1 -1
- pyscf/pbc/scf/stability.py +1 -1
- pyscf/pbc/scf/uhf.py +3 -1
- pyscf/pbc/symm/symmetry.py +2 -2
- pyscf/pbc/tdscf/kproxy.py +1 -1
- pyscf/pbc/tdscf/kproxy_supercell.py +2 -2
- pyscf/pbc/tdscf/krhf.py +215 -133
- pyscf/pbc/tdscf/krhf_slow_supercell.py +1 -1
- pyscf/pbc/tdscf/krks.py +1 -45
- pyscf/pbc/tdscf/kuhf.py +58 -105
- pyscf/pbc/tdscf/kuks.py +0 -56
- pyscf/pbc/tdscf/proxy.py +1 -1
- pyscf/pbc/tdscf/rhf.py +111 -3
- pyscf/pbc/tdscf/rks.py +2 -1
- pyscf/pbc/tdscf/uhf.py +203 -1
- pyscf/pbc/tdscf/uks.py +2 -1
- pyscf/pbc/tools/k2gamma.py +7 -4
- pyscf/pbc/tools/pbc.py +63 -56
- pyscf/pbc/tools/pyscf_ase.py +0 -1
- pyscf/pbc/tools/pywannier90.py +1 -1
- pyscf/qmmm/mm_mole.py +1 -1
- pyscf/scf/_response_functions.py +2 -2
- pyscf/scf/_vhf.py +14 -10
- pyscf/scf/addons.py +29 -15
- pyscf/scf/cphf.py +14 -52
- pyscf/scf/dhf.py +39 -10
- pyscf/scf/dispersion.py +9 -8
- pyscf/scf/ghf.py +25 -13
- pyscf/scf/ghf_symm.py +2 -2
- pyscf/scf/hf.py +245 -29
- pyscf/scf/rohf.py +37 -5
- pyscf/scf/stability.py +142 -112
- pyscf/scf/ucphf.py +21 -16
- pyscf/scf/uhf.py +95 -58
- pyscf/sgx/sgx.py +1 -1
- pyscf/sgx/sgx_jk.py +4 -4
- pyscf/solvent/_ddcosmo_tdscf_grad.py +1 -1
- pyscf/solvent/ddcosmo.py +1 -1
- pyscf/solvent/pol_embed.py +1 -1
- pyscf/soscf/ciah.py +1 -1
- pyscf/soscf/newton_ah.py +1 -1
- pyscf/symm/__init__.py +1 -1
- pyscf/symm/addons.py +5 -5
- pyscf/tdscf/_lr_eig.py +505 -0
- pyscf/tdscf/common_slow.py +1 -1
- pyscf/tdscf/dhf.py +41 -37
- pyscf/tdscf/dks.py +0 -4
- pyscf/tdscf/ghf.py +91 -71
- pyscf/tdscf/gks.py +16 -16
- pyscf/tdscf/proxy.py +2 -2
- pyscf/tdscf/rhf.py +143 -96
- pyscf/tdscf/rks.py +15 -14
- pyscf/tdscf/uhf.py +117 -70
- pyscf/tdscf/uks.py +17 -18
- pyscf/tools/fcidump.py +3 -0
- pyscf/x2c/sfx2c1e.py +1 -1
- pyscf/x2c/tdscf.py +4 -4
- pyscf/x2c/x2c.py +15 -11
- {pyscf-2.6.2.dist-info → pyscf-2.7.0.dist-info}/METADATA +24 -24
- {pyscf-2.6.2.dist-info → pyscf-2.7.0.dist-info}/NOTICE +3 -1
- {pyscf-2.6.2.dist-info → pyscf-2.7.0.dist-info}/RECORD +242 -240
- {pyscf-2.6.2.dist-info → pyscf-2.7.0.dist-info}/WHEEL +1 -1
- pyscf/dft/gen_libxc_param.py +0 -35
- pyscf/dft/gen_xcfun_param.py +0 -209
- {pyscf-2.6.2.dist-info → pyscf-2.7.0.dist-info}/LICENSE +0 -0
- {pyscf-2.6.2.dist-info → pyscf-2.7.0.dist-info}/top_level.txt +0 -0
pyscf/dft/gen_libxc_param.py
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python
|
|
2
|
-
# Copyright 2014-2019 The PySCF Developers. All Rights Reserved.
|
|
3
|
-
#
|
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
# you may not use this file except in compliance with the License.
|
|
6
|
-
# You may obtain a copy of the License at
|
|
7
|
-
#
|
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
#
|
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
# See the License for the specific language governing permissions and
|
|
14
|
-
# limitations under the License.
|
|
15
|
-
|
|
16
|
-
import os
|
|
17
|
-
import sys
|
|
18
|
-
ldpath = os.path.abspath(os.path.join(__file__, '..', '..', 'lib', 'deps', 'lib'))
|
|
19
|
-
if ldpath not in os.environ['LD_LIBRARY_PATH']:
|
|
20
|
-
sys.stderr.write(f'Set\n\tLD_LIBRARY_PATH={ldpath}:$LD_LIBRARY_PATH\n'
|
|
21
|
-
'and rerun the script\n')
|
|
22
|
-
exit()
|
|
23
|
-
|
|
24
|
-
pypath = os.path.join(__file__, '..', '..', 'lib', 'build', 'deps', 'src', 'libxc')
|
|
25
|
-
sys.path.insert(0, os.path.abspath(pypath))
|
|
26
|
-
import pylibxc
|
|
27
|
-
|
|
28
|
-
for xcname in pylibxc.util.xc_available_functional_names():
|
|
29
|
-
f = pylibxc.LibXCFunctional(xcname, 1)
|
|
30
|
-
f_id = f.get_number()
|
|
31
|
-
ref = f.get_references()
|
|
32
|
-
key = f"'{xcname.upper()}'"
|
|
33
|
-
print(f"{key:<31s}: {f_id:<3d}, # {ref[0]}")
|
|
34
|
-
for r in ref[1:]:
|
|
35
|
-
print(f" # {r}")
|
pyscf/dft/gen_xcfun_param.py
DELETED
|
@@ -1,209 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python
|
|
2
|
-
# Copyright 2014-2020 The PySCF Developers. All Rights Reserved.
|
|
3
|
-
#
|
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
# you may not use this file except in compliance with the License.
|
|
6
|
-
# You may obtain a copy of the License at
|
|
7
|
-
#
|
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
#
|
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
# See the License for the specific language governing permissions and
|
|
14
|
-
# limitations under the License.
|
|
15
|
-
|
|
16
|
-
from pyscf import dft
|
|
17
|
-
import ctypes
|
|
18
|
-
|
|
19
|
-
libdft = dft.xcfun._itrf
|
|
20
|
-
libdft.xc_enumerate_parameters.restype = ctypes.c_char_p
|
|
21
|
-
libdft.XCFUN_xc_type.restype = ctypes.c_int
|
|
22
|
-
libdft.xc_describe_short.restype = ctypes.c_char_p
|
|
23
|
-
libdft.xc_describe_short.argtype = [ctypes.c_char_p]
|
|
24
|
-
libdft.xc_describe_long.restype = ctypes.c_char_p
|
|
25
|
-
libdft.xc_describe_long.argtype = [ctypes.c_char_p]
|
|
26
|
-
lda_ids = []
|
|
27
|
-
gga_ids = []
|
|
28
|
-
mgga_ids = []
|
|
29
|
-
mlgga_ids = []
|
|
30
|
-
xc_codes = {}
|
|
31
|
-
for i in range(68):
|
|
32
|
-
name = libdft.xc_enumerate_parameters(ctypes.c_int(i))
|
|
33
|
-
sdescr = libdft.xc_describe_short(name)
|
|
34
|
-
#ldescr = libdft.xc_describe_long(ctypes.c_int(i))
|
|
35
|
-
if sdescr is not None:
|
|
36
|
-
#print("'%s' : %d, # %s" % (name, i, sdescr.replace('\n', '. ')))
|
|
37
|
-
print('%-16s: %2d, # %s' % ("'%s'"%name, i, sdescr.replace('\n', '. ')))
|
|
38
|
-
xc_codes[name] = i
|
|
39
|
-
|
|
40
|
-
fntype = libdft.XCFUN_xc_type(ctypes.c_int(i))
|
|
41
|
-
if fntype == 0:
|
|
42
|
-
lda_ids.append(i)
|
|
43
|
-
elif fntype == 1:
|
|
44
|
-
gga_ids.append(i)
|
|
45
|
-
elif fntype == 2:
|
|
46
|
-
mgga_ids.append(i)
|
|
47
|
-
|
|
48
|
-
alias = {
|
|
49
|
-
'SLATER': 'SLATERX',
|
|
50
|
-
'LDA' : 'SLATERX',
|
|
51
|
-
'VWN' : 'VWN5C',
|
|
52
|
-
'VWN5' : 'VWN5C',
|
|
53
|
-
'B88' : 'BECKEX',
|
|
54
|
-
'LYP' : 'LYPC',
|
|
55
|
-
}
|
|
56
|
-
for k, v in alias.items():
|
|
57
|
-
print('%-16s: %2d, # %s' % ("'%s'"%k, xc_codes[v], v))
|
|
58
|
-
print('LDA_IDS = %s' % lda_ids)
|
|
59
|
-
print('GGA_IDS = %s' % gga_ids)
|
|
60
|
-
print('MGGA_IDS = %s' % mgga_ids)
|
|
61
|
-
|
|
62
|
-
#define XC_D0 0
|
|
63
|
-
#define XC_D1 1
|
|
64
|
-
#define XC_D2 2
|
|
65
|
-
#define XC_D3 3
|
|
66
|
-
#define XC_D4 4
|
|
67
|
-
|
|
68
|
-
#define XC_D00 0
|
|
69
|
-
#define XC_D10 1
|
|
70
|
-
#define XC_D01 2
|
|
71
|
-
#define XC_D20 3
|
|
72
|
-
#define XC_D11 4
|
|
73
|
-
#define XC_D02 5
|
|
74
|
-
#define XC_D30 6
|
|
75
|
-
#define XC_D21 7
|
|
76
|
-
#define XC_D12 8
|
|
77
|
-
#define XC_D03 9
|
|
78
|
-
#define XC_D40 10
|
|
79
|
-
#define XC_D31 11
|
|
80
|
-
#define XC_D22 12
|
|
81
|
-
#define XC_D13 13
|
|
82
|
-
#define XC_D04 14
|
|
83
|
-
|
|
84
|
-
#define XC_D00000 0
|
|
85
|
-
#define XC_D10000 1
|
|
86
|
-
#define XC_D01000 2
|
|
87
|
-
#define XC_D00100 3
|
|
88
|
-
#define XC_D00010 4
|
|
89
|
-
#define XC_D00001 5
|
|
90
|
-
#define XC_D20000 6
|
|
91
|
-
#define XC_D11000 7
|
|
92
|
-
#define XC_D10100 8
|
|
93
|
-
#define XC_D10010 9
|
|
94
|
-
#define XC_D10001 10
|
|
95
|
-
#define XC_D02000 11
|
|
96
|
-
#define XC_D01100 12
|
|
97
|
-
#define XC_D01010 13
|
|
98
|
-
#define XC_D01001 14
|
|
99
|
-
#define XC_D00200 15
|
|
100
|
-
#define XC_D00110 16
|
|
101
|
-
#define XC_D00101 17
|
|
102
|
-
#define XC_D00020 18
|
|
103
|
-
#define XC_D00011 19
|
|
104
|
-
#define XC_D00002 20
|
|
105
|
-
#define XC_D30000 21
|
|
106
|
-
#define XC_D21000 22
|
|
107
|
-
#define XC_D20100 23
|
|
108
|
-
#define XC_D20010 24
|
|
109
|
-
#define XC_D20001 25
|
|
110
|
-
#define XC_D12000 26
|
|
111
|
-
#define XC_D11100 27
|
|
112
|
-
#define XC_D11010 28
|
|
113
|
-
#define XC_D11001 29
|
|
114
|
-
#define XC_D10200 30
|
|
115
|
-
#define XC_D10110 31
|
|
116
|
-
#define XC_D10101 32
|
|
117
|
-
#define XC_D10020 33
|
|
118
|
-
#define XC_D10011 34
|
|
119
|
-
#define XC_D10002 35
|
|
120
|
-
#define XC_D03000 36
|
|
121
|
-
#define XC_D02100 37
|
|
122
|
-
#define XC_D02010 38
|
|
123
|
-
#define XC_D02001 39
|
|
124
|
-
#define XC_D01200 40
|
|
125
|
-
#define XC_D01110 41
|
|
126
|
-
#define XC_D01101 42
|
|
127
|
-
#define XC_D01020 43
|
|
128
|
-
#define XC_D01011 44
|
|
129
|
-
#define XC_D01002 45
|
|
130
|
-
#define XC_D00300 46
|
|
131
|
-
#define XC_D00210 47
|
|
132
|
-
#define XC_D00201 48
|
|
133
|
-
#define XC_D00120 49
|
|
134
|
-
#define XC_D00111 50
|
|
135
|
-
#define XC_D00102 51
|
|
136
|
-
#define XC_D00030 52
|
|
137
|
-
#define XC_D00021 53
|
|
138
|
-
#define XC_D00012 54
|
|
139
|
-
#define XC_D00003 55
|
|
140
|
-
#define XC_D40000 56
|
|
141
|
-
#define XC_D31000 57
|
|
142
|
-
#define XC_D30100 58
|
|
143
|
-
#define XC_D30010 59
|
|
144
|
-
#define XC_D30001 60
|
|
145
|
-
#define XC_D22000 61
|
|
146
|
-
#define XC_D21100 62
|
|
147
|
-
#define XC_D21010 63
|
|
148
|
-
#define XC_D21001 64
|
|
149
|
-
#define XC_D20200 65
|
|
150
|
-
#define XC_D20110 66
|
|
151
|
-
#define XC_D20101 67
|
|
152
|
-
#define XC_D20020 68
|
|
153
|
-
#define XC_D20011 69
|
|
154
|
-
#define XC_D20002 70
|
|
155
|
-
#define XC_D13000 71
|
|
156
|
-
#define XC_D12100 72
|
|
157
|
-
#define XC_D12010 73
|
|
158
|
-
#define XC_D12001 74
|
|
159
|
-
#define XC_D11200 75
|
|
160
|
-
#define XC_D11110 76
|
|
161
|
-
#define XC_D11101 77
|
|
162
|
-
#define XC_D11020 78
|
|
163
|
-
#define XC_D11011 79
|
|
164
|
-
#define XC_D11002 80
|
|
165
|
-
#define XC_D10300 81
|
|
166
|
-
#define XC_D10210 82
|
|
167
|
-
#define XC_D10201 83
|
|
168
|
-
#define XC_D10120 84
|
|
169
|
-
#define XC_D10111 85
|
|
170
|
-
#define XC_D10102 86
|
|
171
|
-
#define XC_D10030 87
|
|
172
|
-
#define XC_D10021 88
|
|
173
|
-
#define XC_D10012 89
|
|
174
|
-
#define XC_D10003 90
|
|
175
|
-
#define XC_D04000 91
|
|
176
|
-
#define XC_D03100 92
|
|
177
|
-
#define XC_D03010 93
|
|
178
|
-
#define XC_D03001 94
|
|
179
|
-
#define XC_D02200 95
|
|
180
|
-
#define XC_D02110 96
|
|
181
|
-
#define XC_D02101 97
|
|
182
|
-
#define XC_D02020 98
|
|
183
|
-
#define XC_D02011 99
|
|
184
|
-
#define XC_D02002 100
|
|
185
|
-
#define XC_D01300 101
|
|
186
|
-
#define XC_D01210 102
|
|
187
|
-
#define XC_D01201 103
|
|
188
|
-
#define XC_D01120 104
|
|
189
|
-
#define XC_D01111 105
|
|
190
|
-
#define XC_D01102 106
|
|
191
|
-
#define XC_D01030 107
|
|
192
|
-
#define XC_D01021 108
|
|
193
|
-
#define XC_D01012 109
|
|
194
|
-
#define XC_D01003 110
|
|
195
|
-
#define XC_D00400 111
|
|
196
|
-
#define XC_D00310 112
|
|
197
|
-
#define XC_D00301 113
|
|
198
|
-
#define XC_D00220 114
|
|
199
|
-
#define XC_D00211 115
|
|
200
|
-
#define XC_D00202 116
|
|
201
|
-
#define XC_D00130 117
|
|
202
|
-
#define XC_D00121 118
|
|
203
|
-
#define XC_D00112 119
|
|
204
|
-
#define XC_D00103 120
|
|
205
|
-
#define XC_D00040 121
|
|
206
|
-
#define XC_D00031 122
|
|
207
|
-
#define XC_D00022 123
|
|
208
|
-
#define XC_D00013 124
|
|
209
|
-
#define XC_D00004 125
|
|
File without changes
|
|
File without changes
|