Skip to content

Commit cc2d8e6

Browse files
committed
Change application-name from soehyb to xca
1 parent d1f4fe2 commit cc2d8e6

114 files changed

Lines changed: 334 additions & 334 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.clang-tidy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Checks: '-*,modernize-*,cppcoreguidelines-*,bugprone-*,-modernize-use-trailing-return-type,-cppcoreguidelines-special-member-functions,-cppcoreguidelines-macro-usage,-cppcoreguidelines-no-malloc,-cppcoreguidelines-pro-bounds-pointer-arithmetic,-cppcoreguidelines-pro-bounds-constant-array-index,-cppcoreguidelines-avoid-magic-numbers, -cppcoreguidelines-non-private-member-variables-in-classes, -bugprone-easily-swappable-parameters'
2-
HeaderFilterRegex: 'triqs_soehyb'
2+
HeaderFilterRegex: 'triqs_xca'

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Please provide the application version that you used.
3232

3333
You can get this information from copy and pasting the output of
3434
```bash
35-
python -c "from triqs_soehyb.version import *; show_version(); show_git_hash();"
35+
python -c "from triqs_xca.version import *; show_version(); show_git_hash();"
3636
```
3737
from the command line. Also, please include the OS you are running and its version.
3838

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,13 @@ jobs:
125125
cmake -S triqs -B triqs/build -G Ninja -DBuild_Tests=OFF -DCMAKE_INSTALL_PREFIX=$HOME/install
126126
cmake --build triqs/build --target install --verbose
127127
128-
- name: Build triqs_soehyb
128+
- name: Build triqs_xca
129129
run: |
130130
source $HOME/install/share/triqs/triqsvars.sh
131131
cmake -S . -B build -G Ninja
132132
cmake --build build --verbose
133133
134-
- name: Test triqs_soehyb
134+
- name: Test triqs_xca
135135
env:
136136
OPENBLAS_NUM_THREADS: "1"
137137
run: |

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# ##############################################################################
22
#
3-
# triqs_soehyb - An example application using triqs and cpp2py
3+
# triqs_xca - An example application using triqs and cpp2py
44
#
55
# Copyright (C) ...
66
#
7-
# triqs_soehyb is free software: you can redistribute it and/or modify it under the
7+
# triqs_xca is free software: you can redistribute it and/or modify it under the
88
# terms of the GNU General Public License as published by the Free Software
99
# Foundation, either version 3 of the License, or (at your option) any later
1010
# version.
1111
#
12-
# triqs_soehyb is distributed in the hope that it will be useful, but WITHOUT ANY
12+
# triqs_xca is distributed in the hope that it will be useful, but WITHOUT ANY
1313
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
1414
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
1515
#
1616
# You should have received a copy of the GNU General Public License along with
17-
# triqs_soehyb (in the file COPYING.txt in this directory). If not, see
17+
# triqs_xca (in the file COPYING.txt in this directory). If not, see
1818
# <http://www.gnu.org/licenses/>.
1919
#
2020
# ##############################################################################
@@ -24,7 +24,7 @@ cmake_policy(VERSION ${CMAKE_VERSION})
2424

2525
# ############
2626
# Define Project
27-
project(triqs_soehyb VERSION 0.0.1 LANGUAGES CXX)
27+
project(triqs_xca VERSION 0.0.1 LANGUAGES CXX)
2828
get_directory_property(IS_SUBPROJECT PARENT_DIRECTORY)
2929

3030
# ############

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See ../triqs/packaging for other options
22
FROM flatironinstitute/triqs:unstable-ubuntu-clang
3-
ARG APPNAME=triqs_soehyb
3+
ARG APPNAME=triqs_xca
44

55
# Install here missing dependencies, e.g.
66
RUN apt-get update && apt-get install -y doxygen python3-h5py libzstd-dev

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
def projectName = "soehyb" /* set to app/repo name */
1+
def projectName = "xca" /* set to app/repo name */
22

33
def dockerName = projectName.toLowerCase();
44
/* which platform to build documentation on */

LICENSE.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
triqs_soehyb - The TRIQS Sum-Of-Exponentials bold HYBridization expansion impurity solver
1+
triqs_xca - The TRIQS Sum-Of-Exponentials bold HYBridization expansion impurity solver
22

33
Copyright (C) 2023-2025, Z. Huang, H. U.R. Strand
44
Copyright (C) 2023-2025, The Simons Foundation
55
authors: J. Kaye, N. Wentzell
66

7-
triqs_soehyb is free software: you can redistribute it and/or modify it under the
7+
triqs_xca is free software: you can redistribute it and/or modify it under the
88
terms of the GNU General Public License as published by the Free Software
99
Foundation, either version 3 of the License, or (at your option) any later
1010
version.
1111

12-
The python timer module (./python/triqs_soehyb/ase/utils/timing.py)
13-
is distributed under the LGPL 2.1 license by other authors, see ./python/triqs_soehyb/ase/LICENSE.
12+
The python timer module (./python/triqs_xca/ase/utils/timing.py)
13+
is distributed under the LGPL 2.1 license by other authors, see ./python/triqs_xca/ase/LICENSE.
1414

15-
The python aaa module (./python/triqs_soehyb/aaa/)
16-
is distributed under the BSD-2-Clause license by other authors, see ./python/triqs_soehyb/aaa/LICENSE.
15+
The python aaa module (./python/triqs_xca/aaa/)
16+
is distributed under the BSD-2-Clause license by other authors, see ./python/triqs_xca/aaa/LICENSE.
1717

18-
triqs_soehyb is distributed in the hope that it will be useful, but WITHOUT ANY
18+
triqs_xca is distributed in the hope that it will be useful, but WITHOUT ANY
1919
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
2020
PARTICULAR PURPOSE. See the GNU General Public License for more details.
2121

2222
You should have received a copy of the GNU General Public License along with
23-
triqs_soehyb (in the file COPYING.txt in this directory). If not, see
23+
triqs_xca (in the file COPYING.txt in this directory). If not, see
2424
<http://www.gnu.org/licenses/>.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![build](https://github.com/TRIQS/soehyb/workflows/build/badge.svg)](https://github.com/TRIQS/soehyb/actions?query=workflow%3Abuild)
1+
[![build](https://github.com/TRIQS/xca/workflows/build/badge.svg)](https://github.com/TRIQS/xca/actions?query=workflow%3Abuild)
22

33
## TRIQS Sum-Of-Exponentials bold HYBridization expansion impurity solver
44

@@ -7,7 +7,7 @@ added regularly. Until a stable release is announced, use at your own risk!
77

88
### Documentation
99

10-
For documentation and installation instructions see [triqs.github.io/soehyb](https://triqs.github.io/soehyb).
10+
For documentation and installation instructions see [triqs.github.io/xca](https://triqs.github.io/xca).
1111

1212
### License
1313

@@ -27,4 +27,4 @@ PARTICULAR PURPOSE. See the GNU General Public License for more details.
2727
<img alt="Flatiron Center for Computational Quantum Physics logo." width="20%" src="doc/_static/CCQ.png">
2828
</picture>
2929

30-
TRIQS/soehyb is supported by the Flatiron Institute, a division of the Simons Foundation.
30+
TRIQS/xca is supported by the Flatiron Institute, a division of the Simons Foundation.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ target_include_directories(${PROJECT_NAME}_c SYSTEM INTERFACE $<INSTALL_INTERFAC
1515
target_link_directories(${PROJECT_NAME}_c PUBLIC $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/c++>)
1616
target_link_directories(${PROJECT_NAME}_c INTERFACE $<INSTALL_INTERFACE:${CMAKE_INSTALL_FULL_LIBDIR}>)
1717
target_compile_definitions(${PROJECT_NAME}_c PUBLIC
18-
TRIQS_SOEHYB_GIT_HASH=${PROJECT_GIT_HASH}
18+
TRIQS_XCA_GIT_HASH=${PROJECT_GIT_HASH}
1919
TRIQS_GIT_HASH=${TRIQS_GIT_HASH}
20-
$<$<CONFIG:Debug>:TRIQS_SOEHYB_DEBUG>
20+
$<$<CONFIG:Debug>:TRIQS_XCA_DEBUG>
2121
$<$<CONFIG:Debug>:TRIQS_DEBUG>
2222
$<$<CONFIG:Debug>:TRIQS_ARRAYS_ENFORCE_BOUNDCHECK>
2323
)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include "triqs_soehyb/atom_diag_utils.hpp"
2-
#include "triqs_soehyb/block_sparse.hpp"
1+
#include "triqs_xca/atom_diag_utils.hpp"
2+
#include "triqs_xca/block_sparse.hpp"
33
#include <iostream>
44
#include <triqs/atom_diag/atom_diag.hpp>
55

0 commit comments

Comments
 (0)