Skip to content

Commit c717d9e

Browse files
committed
Rename hamilt_ofdft
1 parent d08314e commit c717d9e

39 files changed

+13
-13
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ target_link_libraries(
736736
elecstate
737737
hamilt_general
738738
hamilt_pwdft
739-
hamilt_ofdft
739+
module_ofdft
740740
hamilt_stodft
741741
psi
742742
psi_initializer

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ For those who are interested in the source code, the following figure shows the
7474
| |-- module_rt The module for defining the Hamiltonian in TDDFT calculations.
7575
| `-- module_ri The module for performing RI calculations.
7676
|-- source_pw The module for defining the Hamiltonian in PW calculations.
77-
| |-- hamilt_ofdft The module for defining the Hamiltonian in OFDFT calculations.
77+
| |-- module_ofdft The module for defining the Hamiltonian in OFDFT calculations.
7878
| |-- hamilt_pwdft The module for defining the Hamiltonian in PW-DFT calculations.
7979
| | |-- operator_pw The module for defining the operators in PW-DFT calculations.
8080
| `-- hamilt_stodft The module for defining the Hamiltonian in STODFT calculations.

source/Makefile.Objects

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ VPATH=./src_global:\
4747
./source_hamilt/module_xc:\
4848
./source_hamilt/module_xc/kernels:\
4949
./source_pw/hamilt_pwdft:\
50-
./source_pw/hamilt_ofdft:\
50+
./source_pw/module_ofdft:\
5151
./source_pw/hamilt_stodft:\
5252
./source_pw/hamilt_pwdft/operator_pw:\
5353
./source_pw/hamilt_pwdft/kernels:\

source/source_esolver/esolver_of.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//-----force-------------------
1515
#include "source_pw/hamilt_pwdft/forces.h"
1616
//-----stress------------------
17-
#include "source_pw/hamilt_ofdft/of_stress_pw.h"
17+
#include "source_pw/module_ofdft/of_stress_pw.h"
1818

1919
namespace ModuleESolver
2020
{

source/source_esolver/esolver_of.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "esolver_fp.h"
55
#include "source_base/opt_DCsrch.h"
66
#include "source_base/opt_TN.hpp"
7-
#include "source_pw/hamilt_ofdft/kedf_manager.h"
7+
#include "source_pw/module_ofdft/kedf_manager.h"
88
#include "source_psi/psi.h"
99

1010
namespace ModuleESolver

source/source_pw/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
add_subdirectory(hamilt_pwdft)
2-
add_subdirectory(hamilt_ofdft)
2+
add_subdirectory(module_ofdft)
33
add_subdirectory(hamilt_stodft)

source/source_pw/hamilt_ofdft/CMakeLists.txt renamed to source/source_pw/module_ofdft/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ list(APPEND hamilt_ofdft_srcs
88
)
99

1010
add_library(
11-
hamilt_ofdft
11+
module_ofdft
1212
OBJECT
1313
${hamilt_ofdft_srcs}
1414
)
1515

1616
if(ENABLE_COVERAGE)
17-
add_coverage(hamilt_ofdft)
17+
add_coverage(module_ofdft)
1818
endif()
1919

2020
if(ENABLE_MLALGO)

0 commit comments

Comments
 (0)