mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-18 12:03:57 +01:00
Remove ASSUMPTIONS.rst. Put it direcly in README.rst
This commit is contained in:
parent
42dde7faca
commit
81ca7f2545
@ -43,34 +43,6 @@ def fetch_splitted_data():
|
|||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
def update_assumptions(data):
|
|
||||||
"""Read the ASSUMPTIONS.rst file, and replace the data with it."""
|
|
||||||
|
|
||||||
try:
|
|
||||||
file = open('ASSUMPTIONS.rst', 'r')
|
|
||||||
except IOError:
|
|
||||||
file = open('ASSUMPTIONS.rst', 'w')
|
|
||||||
assumptions = ""
|
|
||||||
else:
|
|
||||||
assumptions = file.read()
|
|
||||||
file.close()
|
|
||||||
|
|
||||||
if assumptions.strip() != "":
|
|
||||||
assumptions = Assum_key + header + assumptions + '\n\n'
|
|
||||||
|
|
||||||
has_assumptions = False
|
|
||||||
for i in range(len(data)):
|
|
||||||
if data[i].startswith(Assum_key):
|
|
||||||
has_assumptions = True
|
|
||||||
data[i] = assumptions
|
|
||||||
|
|
||||||
if not has_assumptions:
|
|
||||||
data.insert(1, assumptions)
|
|
||||||
|
|
||||||
return data
|
|
||||||
|
|
||||||
|
|
||||||
def update_needed(data):
|
def update_needed(data):
|
||||||
"""Read the NEEDED_CHILDREN_MODULES file, and replace the data with it.
|
"""Read the NEEDED_CHILDREN_MODULES file, and replace the data with it.
|
||||||
Create the links to the GitHub pages."""
|
Create the links to the GitHub pages."""
|
||||||
@ -195,7 +167,6 @@ def git_add():
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
data = fetch_splitted_data()
|
data = fetch_splitted_data()
|
||||||
data = update_assumptions(data)
|
|
||||||
data = update_documentation(data)
|
data = update_documentation(data)
|
||||||
data = update_needed(data)
|
data = update_needed(data)
|
||||||
output = ''.join(data)
|
output = ''.join(data)
|
||||||
|
@ -1 +0,0 @@
|
|||||||
* The AO coefficients in the EZFIO files are not necessarily normalized and are normalized after reading
|
|
@ -27,9 +27,6 @@ the two electron integrals.
|
|||||||
Assumptions
|
Assumptions
|
||||||
===========
|
===========
|
||||||
|
|
||||||
.. Do not edit this section. It was auto-generated from the
|
|
||||||
.. NEEDED_MODULES_CHILDREN file by the `update_README.py` script.
|
|
||||||
|
|
||||||
* The AO coefficients in the EZFIO files are not necessarily normalized and are normalized after reading
|
* The AO coefficients in the EZFIO files are not necessarily normalized and are normalized after reading
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
``bit_kind_shift``, ``bit_kind_size`` and ``bit_kind`` are coherent:
|
|
||||||
|
|
||||||
.. code_block:: fortran
|
|
||||||
|
|
||||||
2**bit_kind_shift = bit_kind_size
|
|
||||||
bit_kind = bit_kind_size / 8
|
|
||||||
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
* The molecular orbitals are assumed orthonormal
|
|
@ -4,10 +4,6 @@ CIS Module
|
|||||||
|
|
||||||
Assumptions
|
Assumptions
|
||||||
===========
|
===========
|
||||||
|
|
||||||
.. Do not edit this section. It was auto-generated from the
|
|
||||||
.. NEEDED_MODULES_CHILDREN file by the `update_README.py` script.
|
|
||||||
|
|
||||||
* The molecular orbitals are assumed orthonormal
|
* The molecular orbitals are assumed orthonormal
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
* The MOs are orthonormal
|
|
||||||
* All the determinants have the same number of electrons
|
|
||||||
* The determinants are orthonormal
|
|
||||||
* The number of generator determinants <= the number of determinants
|
|
||||||
* All the determinants in the H_apply buffer are supposed to be different from the
|
|
||||||
wave function determinants
|
|
||||||
* All the determinants in the H_apply buffer are supposed to be unique
|
|
@ -1,4 +0,0 @@
|
|||||||
* ``elec_num`` >= 0
|
|
||||||
* ``elec_alpha_num`` >= 0
|
|
||||||
* ``elec_beta_num`` >= 0
|
|
||||||
* ``elec_alpha_num`` >= ``elec_beta_num``
|
|
@ -1 +0,0 @@
|
|||||||
The active space is defined by the ``reference_bitmask``.
|
|
@ -1,4 +0,0 @@
|
|||||||
ASSUMPTONS
|
|
||||||
==========
|
|
||||||
|
|
||||||
* The AO basis functions are normalized.
|
|
@ -1,6 +0,0 @@
|
|||||||
* This is not allowed:
|
|
||||||
|
|
||||||
subroutine &
|
|
||||||
pt2_....
|
|
||||||
|
|
||||||
|
|
@ -58,24 +58,15 @@ Ndet
|
|||||||
N_st
|
N_st
|
||||||
Number of states
|
Number of states
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Assumptions
|
Assumptions
|
||||||
===========
|
===========
|
||||||
|
|
||||||
.. Do not edit this section. It was auto-generated from the
|
|
||||||
.. NEEDED_MODULES file.
|
|
||||||
|
|
||||||
* This is not allowed:
|
* This is not allowed:
|
||||||
|
|
||||||
subroutine &
|
subroutine &
|
||||||
pt2_....
|
pt2_....
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
THIS FILE HAS TO BE FILLED
|
|
Loading…
Reference in New Issue
Block a user