Skip to content

Commit f9fc80f

Browse files
committed
Change name to CTSEG-J
1 parent 7e03d77 commit f9fc80f

File tree

92 files changed

+65
-2131
lines changed

Some content is hidden

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

92 files changed

+65
-2131
lines changed

.clang-tidy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Checks: '-*,modernize-*,cppcoreguidelines-*,-modernize-use-trailing-return-type,-modernize-use-nullptr,-cppcoreguidelines-avoid-magic-numbers'
2-
HeaderFilterRegex: 'triqs_ctseg'
2+
HeaderFilterRegex: 'triqs_ctseg-J'

.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_ctseg.version import *; show_version(); show_git_hash();"
35+
python -c "from triqs_ctseg-J.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
@@ -83,7 +83,7 @@ jobs:
8383
make -j1 install VERBOSE=1
8484
cd ../
8585
86-
- name: Build ctseg
86+
- name: Build ctseg-J
8787
env:
8888
CC: ${{ matrix.cc }}
8989
CXX: ${{ matrix.cxx }}
@@ -93,7 +93,7 @@ jobs:
9393
mkdir build && cd build && cmake .. -DBuild_Documentation=${{ matrix.doc }}
9494
make -j2 || make -j1 VERBOSE=1
9595
96-
- name: Test ctseg
96+
- name: Test ctseg-J
9797
env:
9898
DYLD_FALLBACK_LIBRARY_PATH: /usr/local/opt/llvm/lib
9999
run: |

CMakeLists.txt

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,9 @@
1-
# ##############################################################################
2-
#
3-
# triqs_ctseg - An example application using triqs and cpp2py
4-
#
5-
# Copyright (C) 2017-2018 N. Wentzell, O. Parcollet
6-
# Copyright (C) 2019 The Simons Foundation
7-
# authors: N. Wentzell, P. Dumitrescu
8-
#
9-
# triqs_ctseg is free software: you can redistribute it and/or modify it under the
10-
# terms of the GNU General Public License as published by the Free Software
11-
# Foundation, either version 3 of the License, or (at your option) any later
12-
# version.
13-
#
14-
# triqs_ctseg is distributed in the hope that it will be useful, but WITHOUT ANY
15-
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16-
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17-
#
18-
# You should have received a copy of the GNU General Public License along with
19-
# triqs_ctseg (in the file COPYING.txt in this directory). If not, see
20-
# <http://www.gnu.org/licenses/>.
21-
#
22-
# ##############################################################################
23-
241
cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
252
cmake_policy(VERSION 3.20)
263

274
# ############
285
# Define Project
29-
project(triqs_ctseg VERSION 3.2.0 LANGUAGES C CXX)
6+
project(triqs_ctseg-J VERSION 3.2.0 LANGUAGES C CXX)
307
get_directory_property(IS_SUBPROJECT PARENT_DIRECTORY)
318

329
# ############
@@ -164,7 +141,7 @@ if(BUILD_DEBIAN_PACKAGE AND NOT IS_SUBPROJECT)
164141
set(CPACK_PACKAGE_NAME ${PROJECT_NAME})
165142
set(CPACK_GENERATOR "DEB")
166143
set(CPACK_PACKAGE_VERSION ${PROJECT_VERSION})
167-
set(CPACK_PACKAGE_CONTACT "https://github.com/TRIQS/ctseg")
144+
set(CPACK_PACKAGE_CONTACT "https://github.com/TRIQS/ctseg-J")
168145
execute_process(COMMAND dpkg --print-architecture OUTPUT_VARIABLE CMAKE_DEBIAN_PACKAGE_ARCHITECTURE OUTPUT_STRIP_TRAILING_WHITESPACE)
169146
set(CPACK_DEBIAN_PACKAGE_DEPENDS "triqs (>= 3.2)")
170147
set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)

ChangeLog.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22

33
# Changelog
44

5-
## Version 3.0.0
6-
7-
8-
ctseg version 3.0.0 is a compatibility
9-
release for TRIQS version 3.0.0 that
10-
* introduces compatibility with Python 3 (Python 2 no longer supported)
11-
* adds a cmake-based dependency management
12-
* fixes several application issues
5+
## Version 3.2.1
136

147
This is the initial release for this project.

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=ctseg
3+
ARG APPNAME=ctseg-J
44

55
RUN apt-get install -y libnfft3-dev || yum install -y nfft-devel || dnf install -y 'https://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/n/nfft-3.3.2-1.el7.x86_64.rpm' 'https://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/n/nfft-devel-3.3.2-1.el7.x86_64.rpm'
66

Jenkinsfile

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

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

README.md

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

33
## TRIQS segment picture solver with spin-spin interactions (CTSEG-J)
44

benchmark/SrMnO3/SrMnO3.ctqmcout

Lines changed: 0 additions & 788 deletions
This file was deleted.

benchmark/SrMnO3/SrMnO3.py

Lines changed: 0 additions & 109 deletions
This file was deleted.

0 commit comments

Comments
 (0)