Source code for nexus.pyscf_analyzer

##################################################################
##  (c) Copyright 2018-  by Jaron T. Krogel                     ##
##################################################################


#====================================================================#
#  pyscf_analyzer.py                                                 #
#    Supports data analysis for PySCF output.  Currently just a      #
#    placeholder for further development.                            #
#                                                                    #
#  Content summary:                                                  #
#    PyscfAnalyzer                                                   #
#      SimulationAnalyzer class for PySCF.                           #
#                                                                    #
#====================================================================#


from .simulation import NullSimulationAnalyzer


[docs] class PyscfAnalyzer(NullSimulationAnalyzer): None
#end class PyscfAnalyzer