forked from abacusmodeling/abacus-develop
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor: move cal_edm_tddft to module_dm (#5485)
* Refactor: move cal_edm_tddft to module_dm * update head file * add lapack_connector.h in cal_edm_tddft.cpp
- Loading branch information
Showing
7 changed files
with
70 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#ifndef CAL_EDM_TDDFT_H | ||
#define CAL_EDM_TDDFT_H | ||
|
||
#include "module_basis/module_ao/parallel_orbitals.h" | ||
#include "module_cell/klist.h" | ||
#include "module_elecstate/elecstate_lcao.h" | ||
#include "module_hamilt_general/hamilt.h" | ||
|
||
namespace elecstate | ||
{ | ||
void cal_edm_tddft(Parallel_Orbitals& pv, | ||
elecstate::ElecState* pelec, | ||
K_Vectors& kv, | ||
hamilt::Hamilt<std::complex<double>>* p_hamilt); | ||
} // namespace elecstate | ||
#endif // CAL_EDM_TDDFT_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ if(ENABLE_LCAO) | |
lcao_others.cpp | ||
lcao_init_after_vc.cpp | ||
lcao_fun.cpp | ||
cal_edm_tddft.cpp | ||
) | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters