Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve wavefunction post-processing #375

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions forte/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,9 @@ orbital-helpers/orbital_embedding.cc
orbital-helpers/orbitaloptimizer.cc
orbital-helpers/pao_builder.cc
orbital-helpers/semi_canonicalize.cc
orbital-helpers/unpaired_density.cc
pci/pci.cc
pci/pci_sigma.cc
post_process/spin_corr.cc
post_process/post_process.cc
sci/aci.cc
sci/aci_build_F.cc
sci/gasaci_build_F.cc
Expand Down
4 changes: 2 additions & 2 deletions forte/api/forte_python_module.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
#include "sci/tdci.h"
#include "genci/ci_occupation.h"

#include "post_process/spin_corr.h"
#include "post_process/post_process.h"

namespace py = pybind11;
using namespace pybind11::literals;
Expand Down Expand Up @@ -217,7 +217,7 @@ PYBIND11_MODULE(_forte, m) {
"Make an object that holds the molecular orbital integrals for the active orbitals");
m.def("make_dynamic_correlation_solver", &make_dynamic_correlation_solver,
"Make a dynamical correlation solver");
m.def("perform_spin_analysis", &perform_spin_analysis, "Do spin analysis");
m.def("perform_post_processing", &perform_post_processing, "Do wave function post processing");
m.def("make_dsrg_method", &make_dsrg_method,
"Make a DSRG method (spin-integrated implementation)");
m.def("make_sadsrg_method", &make_sadsrg_method,
Expand Down
344 changes: 0 additions & 344 deletions forte/orbital-helpers/unpaired_density.cc

This file was deleted.

Loading