Skip to content

Commit

Permalink
PR Silence PySCF (#322)
Browse files Browse the repository at this point in the history
* added molecule_arguments explicitly to orbital_optimizer

* verbose=false in pyscf
  • Loading branch information
kottmanj authored Feb 2, 2024
1 parent 018d407 commit eb20f26
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/tequila/quantumchemistry/pyscf_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ def __init__(self, parameters: ParametersQC,

# solve restricted HF
mf = pyscf.scf.RHF(mol)
mf.verbose = False
if "verbose" in kwargs:
mf.verbose = kwargs["verbose"]

mf.kernel()

# only works if point_group is not C1
Expand Down

0 comments on commit eb20f26

Please sign in to comment.