Skip to content

Commit

Permalink
Update using.md (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
tberkel authored Oct 14, 2024
1 parent 2cd8b96 commit 8c7db22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/user/using.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,10 @@ Intermediate quantities are **not** saved in the class.
After calling the `kernel()` or `run()` method, results will be generated and
saved as attributes of the object. For example,
```python
from pyscf import gto, scf, ccsd
from pyscf import gto, scf, cc
mol = gto.M(atom='H 0 0 0; H 0 0 1.1', basis='ccpvtz')
mf = scf.RHF(mol).run()
mycc = ccsd.CCSD(mf).run()
mycc = cc.CCSD(mf).run()
print(mycc.e_tot)
print(mycc.e_corr)
print(mycc.t1.shape)
Expand Down

0 comments on commit 8c7db22

Please sign in to comment.