diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..84907ce --- /dev/null +++ b/.clang-format @@ -0,0 +1,104 @@ +# Copyright 2019 UChicago Argonne, LLC. +# (c.f. AUTHORS, LICENSE) +# +# This file is part of the AML project. +# For more info, see https://github.com/anlsys/aml +# +# SPDX-License-Identifier: BSD-3-Clause +--- +Language: Cpp +AccessModifierOffset: -2 +AlignAfterOpenBracket: Align +AlignConsecutiveAssignments: false +AlignConsecutiveDeclarations: false +AlignEscapedNewlines: Right +AlignOperands: true +AlignTrailingComments: false +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortBlocksOnASingleLine: false +AllowShortCaseLabelsOnASingleLine: false +AllowShortFunctionsOnASingleLine: None +AllowShortIfStatementsOnASingleLine: false +AllowShortLoopsOnASingleLine: false +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: false +BinPackArguments: true +BinPackParameters: false +BreakBeforeBinaryOperators: None +BreakBeforeBraces: Linux +BreakBeforeInheritanceComma: false +BreakInheritanceList: BeforeColon +BreakBeforeTernaryOperators: false +BreakConstructorInitializersBeforeComma: false +BreakConstructorInitializers: BeforeComma +BreakAfterJavaFieldAnnotations: false +BreakStringLiterals: false +ColumnLimit: 80 +CommentPragmas: '^ IWYU pragma:' +CompactNamespaces: false +ConstructorInitializerAllOnOneLineOrOnePerLine: false +ConstructorInitializerIndentWidth: 8 +ContinuationIndentWidth: 8 +Cpp11BracedListStyle: true +DerivePointerAlignment: false +DisableFormat: false +ExperimentalAutoDetectBinPacking: false +FixNamespaceComments: false +IncludeBlocks: Regroup +IncludeCategories: + - Regex: 'config\.h' + Priority: 1 + - Regex: 'test.*' + Priority: 1 + - Regex: 'aml\.h' + Priority: 3 + - Regex: 'aml/.*' + Priority: 4 + - Regex: '^<.*\.h>' + Priority: 2 + - Regex: '.*' + Priority: 5 +IncludeIsMainRegex: 'aml\.h' +IndentCaseLabels: false +IndentWidth: 8 +IndentWrappedFunctionNames: false +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: true +MacroBlockBegin: '' +MacroBlockEnd: '' +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: Inner +PenaltyBreakAssignment: 10 +PenaltyBreakBeforeFirstCallParameter: 30 +PenaltyBreakComment: 10 +PenaltyBreakFirstLessLess: 0 +PenaltyBreakString: 10 +PenaltyBreakTemplateDeclaration: 10 +PenaltyExcessCharacter: 100 +PenaltyReturnTypeOnItsOwnLine: 60 +PointerAlignment: Right +ReflowComments: true +SortIncludes: true +SortUsingDeclarations: true +SpaceAfterCStyleCast: false +SpaceAfterTemplateKeyword: true +SpaceBeforeAssignmentOperators: true +SpaceBeforeCpp11BracedList: false +SpaceBeforeCtorInitializerColon: true +SpaceBeforeInheritanceColon: true +SpaceBeforeParens: ControlStatements +SpaceBeforeRangeBasedForLoopColon: true +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 1 +SpacesInAngles: false +SpacesInContainerLiterals: false +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false +SpacesInSquareBrackets: false +Standard: Cpp03 +TabWidth: 8 +UseTab: ForIndentation +... + diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml new file mode 100644 index 0000000..175e8a0 --- /dev/null +++ b/.github/workflows/builds.yml @@ -0,0 +1,109 @@ +name: builds +on: + push: + branches: + - master + pull_request: + +env: + CFLAGS: "-std=c99 -pedantic -Wall -Wextra -Werror -Wno-unused-but-set-parameter -Wno-builtin-declaration-mismatch" + VERBOSE: 1 +jobs: + generic: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: true + fetch-depth: 0 + - run: sudo apt-get update + - run: sudo apt-get install -y gcc make autoconf automake libtool pkgconf + - name: configure + run: | + ./autogen.sh + mkdir build + ./configure --prefix=`pwd`/build + - run: make + - run: make check + - run: make install + - uses: actions/upload-artifact@v4 + if: failure() + with: + name: generic + path: | + config.log + tests/*.log + out-of-tree: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: true + fetch-depth: 0 + - run: sudo apt-get update + - run: sudo apt-get install -y gcc make autoconf automake libtool pkgconf libhwloc-dev + - name: configure + run: | + ./autogen.sh + mkdir out + cd out + mkdir build + ../configure --prefix=`pwd`/build --without-rocm + - run: make + working-directory: out + - run: make check + working-directory: out + - uses: actions/upload-artifact@v4 + if: failure() + with: + name: out-of-tree + path: | + out/config.log + out/tests/*.log + valgrind: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: true + fetch-depth: 0 + - run: sudo apt-get update + - run: sudo apt-get install -y gcc make autoconf automake libtool pkgconf valgrind + - name: configure + run: | + ./autogen.sh + mkdir build + ./configure --prefix=`pwd`/build --enable-valgrind + - run: make + - run: make check-valgrind + env: + VALGRIND_SUPPRESSIONS_FILES: ${{ github.workspace }}/.valgrind.supp + - uses: actions/upload-artifact@v4 + if: failure() + with: + name: valgrind + path: | + config.log + tests/*.log + distcheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: true + fetch-depth: 0 + - run: sudo apt-get update + - run: sudo apt-get install -y gcc make autoconf automake libtool pkgconf + - name: configure + run: | + ./autogen.sh + mkdir build + ./configure --prefix=`pwd`/build + - run: make distcheck + - uses: actions/upload-artifact@v4 + if: failure() + with: + name: distcheck + path: | + config.log + tests/*.log diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml new file mode 100644 index 0000000..2f080f7 --- /dev/null +++ b/.github/workflows/style.yml @@ -0,0 +1,27 @@ +name: style-checks +on: [pull_request] +jobs: + clang-format: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: retrieve merge target info + run: git fetch origin $GITHUB_BASE_REF + - run: sudo apt-get update + - run: sudo apt-get install -y clang-format-12 + - name: run git-clang-format + run: | + target=$(git rev-parse origin/$GITHUB_BASE_REF) + git-clang-format-12 --quiet --diff $target > clang-format-diff + lint=$(grep -v --color=never "no modified files to format" clang-format-diff || true) + if [ ! -z "$lint" ]; then echo "format errors, inspect the clang-format-diff artifact for info"; exit 1; else exit 0; fi + shell: bash + - name: output clang format diff + if: always() + run: cat ./clang-format-diff + license-check: + runs-on: ubuntu-latest + container: apache/skywalking-eyes + steps: + - uses: actions/checkout@v2 + - run: /bin/license-eye -c .licenserc.yml -v debug header check diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index edd928b..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,11 +0,0 @@ -variables: - ARGOPKGS : "https://xgitlab.cels.anl.gov/argo/argopkgs/-/archive/master/argopkgs-master.tar.gz" - EXTRA: "--excit ./." - -stages: - - quality - - build - -include: - - https://xgitlab.cels.anl.gov/argo/argopkgs/raw/master/gitlab-ci/repoquality.yml - - https://xgitlab.cels.anl.gov/argo/argopkgs/raw/master/gitlab-ci/excit.yml diff --git a/.licenserc.yml b/.licenserc.yml new file mode 100644 index 0000000..53d23c5 --- /dev/null +++ b/.licenserc.yml @@ -0,0 +1,20 @@ +header: + license: + spdx-id: BSD-3-Clause + copyright-owner: UChicago Argonne, LLC + content: | + Copyright 2019 UChicago Argonne, LLC. + (c.f. AUTHORS, LICENSE) + + This file is part of the EXCIT project. + For more info, see https://github.com/anlsys/excit + + SPDX-License-Identifier: BSD-3-Clause + + paths: + - '**/*.c' + - '**/*.h' + - '**/*.h.in' + paths-ignore: + - 'src/dev/excit.h' + comment: never diff --git a/.repoquality b/.repoquality deleted file mode 100644 index 659cbae..0000000 --- a/.repoquality +++ /dev/null @@ -1,3 +0,0 @@ -src/*.c -src/*.h -tests/*.c diff --git a/.valgrind.supp b/.valgrind.supp new file mode 100644 index 0000000..e97463d --- /dev/null +++ b/.valgrind.supp @@ -0,0 +1,12 @@ +{ + ignore_unversioned_libs + Memcheck:Leak + ... + obj:*/lib*/lib*.so +} +{ + ignore_versioned_libs + Memcheck:Leak + ... + obj:*/lib*/lib*.so.* +} diff --git a/src/Makefile.am b/src/Makefile.am index c817406..bcc34c3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,5 +1,3 @@ -AM_CFLAGS = -std=c99 -Wall -Wextra -Werror -pedantic - lib_LTLIBRARIES = libexcit.la libexcit_la_SOURCES = excit.c \ diff --git a/src/composition.c b/src/composition.c index 1bb8150..a29005b 100644 --- a/src/composition.c +++ b/src/composition.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include "dev/excit.h" #include "composition.h" diff --git a/src/composition.h b/src/composition.h index 66613d9..68768a9 100644 --- a/src/composition.h +++ b/src/composition.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef EXCIT_SLICE_H #define EXCIT_SLICE_H diff --git a/src/cons.c b/src/cons.c index 610164d..cdacf37 100644 --- a/src/cons.c +++ b/src/cons.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include "dev/excit.h" #include "cons.h" diff --git a/src/cons.h b/src/cons.h index 426af35..86be09c 100644 --- a/src/cons.h +++ b/src/cons.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef EXCIT_CONS_H #define EXCIT_CONS_H diff --git a/src/excit.c b/src/excit.c index 11737e3..5c1ea46 100644 --- a/src/excit.c +++ b/src/excit.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include "excit.h" #include "dev/excit.h" diff --git a/src/excit.h b/src/excit.h index 5f3b0ca..a5a138f 100644 --- a/src/excit.h +++ b/src/excit.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef EXCIT_H #define EXCIT_H 1 diff --git a/src/hilbert2d.c b/src/hilbert2d.c index bffb45f..c314fc8 100644 --- a/src/hilbert2d.c +++ b/src/hilbert2d.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include "dev/excit.h" #include "hilbert2d.h" diff --git a/src/hilbert2d.h b/src/hilbert2d.h index c23ced1..f8b3bdd 100644 --- a/src/hilbert2d.h +++ b/src/hilbert2d.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef EXCIT_HILBERT2D_H #define EXCIT_HILBERT2D_H diff --git a/src/index.c b/src/index.c index 21636df..b617ea2 100644 --- a/src/index.c +++ b/src/index.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include diff --git a/src/index.h b/src/index.h index 077a97e..6a20cba 100644 --- a/src/index.h +++ b/src/index.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef EXCIT_INDEX_H #define EXCIT_INDEX_H diff --git a/src/loop.c b/src/loop.c index 330e303..d273067 100644 --- a/src/loop.c +++ b/src/loop.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include "dev/excit.h" #include "loop.h" diff --git a/src/loop.h b/src/loop.h index 973c739..57ba0b2 100644 --- a/src/loop.h +++ b/src/loop.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef EXCIT_LOOP_H #define EXCIT_LOOP_H diff --git a/src/prod.c b/src/prod.c index 4257169..373550d 100644 --- a/src/prod.c +++ b/src/prod.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include "dev/excit.h" #include "prod.h" diff --git a/src/prod.h b/src/prod.h index 7f4f2fe..1df2ac8 100644 --- a/src/prod.h +++ b/src/prod.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef EXCIT_PROD_H #define EXCIT_PROD_H diff --git a/src/range.c b/src/range.c index 88c689a..a3bc67f 100644 --- a/src/range.c +++ b/src/range.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include "dev/excit.h" #include "range.h" diff --git a/src/range.h b/src/range.h index 944db7d..fad1c00 100644 --- a/src/range.h +++ b/src/range.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef EXCIT_RANGE_H #define EXCIT_RANGE_H diff --git a/src/repeat.c b/src/repeat.c index 51110cf..c7de06d 100644 --- a/src/repeat.c +++ b/src/repeat.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include "dev/excit.h" #include "repeat.h" diff --git a/src/repeat.h b/src/repeat.h index 4750f36..b57c51f 100644 --- a/src/repeat.h +++ b/src/repeat.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef EXCIT_REPEAT_H #define EXCIT_REPEAT_H diff --git a/src/tleaf.c b/src/tleaf.c index a544434..9c8edd0 100644 --- a/src/tleaf.c +++ b/src/tleaf.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include "dev/excit.h" diff --git a/src/tleaf.h b/src/tleaf.h index a0dbd5a..edfade6 100644 --- a/src/tleaf.h +++ b/src/tleaf.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef TLEAF_H #define TLEAF_H diff --git a/tests/Makefile.am b/tests/Makefile.am index 34a22b9..0d95176 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,6 +1,6 @@ AM_COLOR_TESTS = yes -AM_CFLAGS = -I$(top_srcdir)/src -std=c99 -Wextra -Wall -Werror -pedantic +AM_CFLAGS = -I$(top_srcdir)/src AM_LDFLAGS = ../src/libexcit.la LIBHSOURCES = excit_test.h diff --git a/tests/excit_composition.c b/tests/excit_composition.c index 91a4c28..9aa06ae 100644 --- a/tests/excit_composition.c +++ b/tests/excit_composition.c @@ -3,11 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. ->>>>>>> 043342c... [ci/quality] Add ci and fix license/authors. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include diff --git a/tests/excit_cons.c b/tests/excit_cons.c index 8c83ba8..8d46c77 100644 --- a/tests/excit_cons.c +++ b/tests/excit_cons.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include diff --git a/tests/excit_hilbert2d.c b/tests/excit_hilbert2d.c index 5af0c14..1f363b3 100644 --- a/tests/excit_hilbert2d.c +++ b/tests/excit_hilbert2d.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include diff --git a/tests/excit_index.c b/tests/excit_index.c index d6c305e..63ffa2d 100644 --- a/tests/excit_index.c +++ b/tests/excit_index.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include diff --git a/tests/excit_loop.c b/tests/excit_loop.c index dda381f..1f11f89 100644 --- a/tests/excit_loop.c +++ b/tests/excit_loop.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include diff --git a/tests/excit_product.c b/tests/excit_product.c index 3d71a52..07581c9 100644 --- a/tests/excit_product.c +++ b/tests/excit_product.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include diff --git a/tests/excit_range.c b/tests/excit_range.c index d1ee20c..1bbdf1a 100644 --- a/tests/excit_range.c +++ b/tests/excit_range.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include diff --git a/tests/excit_repeat.c b/tests/excit_repeat.c index 23e665e..bc45f5e 100644 --- a/tests/excit_repeat.c +++ b/tests/excit_repeat.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include diff --git a/tests/excit_test.c b/tests/excit_test.c index d2daae1..d7fcf68 100644 --- a/tests/excit_test.c +++ b/tests/excit_test.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include "excit_test.h" #include "excit.h" #include diff --git a/tests/excit_test.h b/tests/excit_test.h index 30339f0..e824eeb 100644 --- a/tests/excit_test.h +++ b/tests/excit_test.h @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #ifndef EXCIT_TEST_H #define EXCIT_TEST_H #include "excit.h" diff --git a/tests/excit_tleaf.c b/tests/excit_tleaf.c index efd6f4e..5a811a7 100644 --- a/tests/excit_tleaf.c +++ b/tests/excit_tleaf.c @@ -3,10 +3,10 @@ * (c.f. AUTHORS, LICENSE) * * This file is part of the EXCIT project. - * For more info, see https://xgitlab.cels.anl.gov/argo/excit + * For more info, see https://github.com/anlsys/excit * * SPDX-License-Identifier: BSD-3-Clause -*******************************************************************************/ + ******************************************************************************/ #include #include #include