Skip to content

Commit fa64045

Browse files
committed
renamed code compiles
1 parent 5617f1f commit fa64045

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

c++/triqs_ctseg-J/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ set_target_properties(${PROJECT_NAME}_c PROPERTIES
1616
target_include_directories(${PROJECT_NAME}_c PUBLIC $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/c++>)
1717
target_include_directories(${PROJECT_NAME}_c SYSTEM INTERFACE $<INSTALL_INTERFACE:${CMAKE_INSTALL_PREFIX}/include>)
1818
target_compile_definitions(${PROJECT_NAME}_c PUBLIC
19-
CTSEG-J_GIT_HASH=${PROJECT_GIT_HASH}
19+
CTSEGJ_GIT_HASH=${PROJECT_GIT_HASH}
2020
TRIQS_GIT_HASH=${TRIQS_GIT_HASH}
21-
$<$<CONFIG:Debug>:CTSEG-J_DEBUG>
21+
$<$<CONFIG:Debug>:CTSEGJ-_DEBUG>
2222
$<$<CONFIG:Debug>:TRIQS_DEBUG>
2323
$<$<CONFIG:Debug>:TRIQS_ARRAYS_ENFORCE_BOUNDCHECK>
2424
BOOST_NO_AUTO_PTR
25-
$<$<BOOL:${CTSEG-J_DEBUG_VERIF}>:CTSEG-J_DEBUG_VERFIC>
25+
$<$<BOOL:${CTSEG_DEBUG_VERIF}>:CTSEG_DEBUG_VERFIC>
2626
)
2727

2828
option(PRINT_LOGS OFF "Print all log messages.")

c++/triqs_ctseg-J/logs.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

33
// Set log levels
4-
#ifdef CTSEG-J_DEBUG
4+
#ifdef CTSEG_DEBUG
55
#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_DEBUG
66
static constexpr bool ctseg_debug = true;
77
#else

c++/triqs_ctseg-J/moves/regroup_spin_segment.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "regroup_spin_segment.hpp"
22
#include "../logs.hpp"
3-
#include "triqs_ctseg/configuration.hpp"
3+
#include "../configuration.hpp"
44
#include <cmath>
55

66
namespace moves {

c++/triqs_ctseg-J/solver_core.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void h5_write(h5::group h5group, std::string subgroup_name, solver_core const &s
117117
auto grp = h5group.create_group(subgroup_name);
118118
h5_write_attribute(grp, "Format", solver_core::hdf5_format());
119119
h5_write_attribute(grp, "TRIQS_GIT_HASH", std::string(STRINGIZE(TRIQS_GIT_HASH)));
120-
h5_write_attribute(grp, "CTSEG-J_GIT_HASH", std::string(STRINGIZE(CTSEG-J_GIT_HASH)));
120+
h5_write_attribute(grp, "CTSEGJ_GIT_HASH", std::string(STRINGIZE(CTSEGJ_GIT_HASH)));
121121
h5_write(grp, "constr_params", s.constr_params);
122122
h5_write(grp, "last_solve_params", s.last_solve_params);
123123
h5_write(grp, "inputs", s.inputs);

test/c++/anderson.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
using triqs::operators::n;
77

8-
TEST(CTSEG-J, Anderson) {
8+
TEST(CTSEGJ, Anderson) {
99
// Start the mpi
1010
mpi::communicator c;
1111

test/c++/dynamical_U.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <triqs_ctseg-J/solver_core.hpp>
44

55
using triqs::operators::n;
6-
TEST(CTSEG-J, Dynamical_U) {
6+
TEST(CTSEGJ, Dynamical_U) {
77
// Start the mpi
88
mpi::communicator c;
99

test/c++/jperp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using triqs::operators::n;
66

7-
TEST(CTSEG-J, J_perp) {
7+
TEST(CTSEGJ, J_perp) {
88
// Start the mpi
99
mpi::communicator c;
1010

test/c++/spin_spin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using triqs::operators::n;
66

7-
TEST(CTSEG-J, Spin_Spin) {
7+
TEST(CTSEGJ, Spin_Spin) {
88
// Start the mpi
99
mpi::communicator c;
1010

0 commit comments

Comments
 (0)