Skip to content

Commit

Permalink
Updated compute_ao_cap in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gayverjr committed Jul 7, 2021
1 parent 0f34a71 commit b481c88
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/interfaces/OpenMolcas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ should be invoked before calling :func:`~pyopencap.CAP.compute_projected_cap`.

.. code-block:: python
pc.compute_ao_cap()
pc.compute_ao_cap(cap_dict)
pc.renormalize()
pc.compute_projected_cap()
Expand All @@ -172,7 +172,7 @@ The following methods have been benchmarked, and the :func:`~pyopencap.CAP.read_
output files to obtain the zeroth order Hamiltonian.

* MS-CASPT2
* XMS-CASPT2
* XMS-CASPT2 and variants

Untested (use at your own risk!)
--------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/psi4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ that the densities are represented in AO basis before passing to PyOpenCAP using
opdm_ao.remove_symmetry(opdm_so,so2ao)
pc.add_tdm(opdm_ao.to_array(),i,j,"psi4")
if not i==j:
pc.add_tdm(opdm_ao.to_array(),j,i,"psi4")
pc.add_tdm(opdm_ao.to_array().conj().T,j,i,"psi4")
Please see the PSI4_ documentation for more details, or our repository for an example.

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/pyscf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ should be invoked before calling :func:`~pyopencap.CAP.compute_projected_cap`.

.. code-block:: python
pc.compute_ao_cap()
pc.compute_ao_cap(cap_dict)
pc.renormalize_cap(pyscf_smat,"pyscf")
pc.compute_projected_cap()
Expand Down

0 comments on commit b481c88

Please sign in to comment.