Skip to content

Commit c9d32e3

Browse files
authored
Finalize Credits to A. Sikorski (#7)
* Finalize Credits to A. Sikorski in _sorted_schur.py * Credits to A. Sikorski in _gpcca.py.
1 parent 24acbc5 commit c9d32e3

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

pygpcca/_gpcca.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,14 @@
2727
__author__ = __maintainer__ = "Bernhard Reuter"
2828
__email__ = "bernhard.reuter AT uni-tuebingen DOT de"
2929
__copyright__ = "Copyright 2020, Bernhard Reuter"
30-
__credits__ = ["Bernhard Reuter", "Marcus Weber", "Susanna Roeblitz", "Marius Lange", "Michal Klein"]
30+
__credits__ = [
31+
"Bernhard Reuter",
32+
"Marcus Weber",
33+
"Susanna Roeblitz",
34+
"Marius Lange",
35+
"Michal Klein",
36+
"Alexander Sikorski",
37+
]
3138

3239

3340
from typing import Dict, List, Tuple, Union, Callable, Optional, TYPE_CHECKING

pygpcca/_sorted_schur.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# This file is part of pyGPCCA.
22
#
33
# Copyright (c) 2020 Bernhard Reuter.
4-
# With contributions of Marius Lange and Michal Klein.
4+
# With contributions of Marius Lange, Michal Klein and Alexander Sikorski.
55
# Based on the original MATLAB GPCCA code authored by Bernhard Reuter, Susanna Roeblitz and Marcus Weber,
66
# Zuse Institute Berlin, Takustrasse 7, 14195 Berlin
77
# We like to thank A. Sikorski and M. Weber for pointing us to SLEPc for partial Schur decompositions of
88
# sparse matrices.
99
# Further parts of sorted_krylov_schur were developed based on the function krylov_schur
1010
# https://github.com/zib-cmd/cmdtools/blob/1c6b6d8e1c35bb487fcf247c5c1c622b4b665b0a/src/cmdtools/analysis/pcca.py#L64,
11-
# written by Alex Sikorski, as a prototype.
11+
# written by Alexander Sikorski.
1212
# --------------------------------------------------
1313
# If you use this code or parts of it, cite the following reference:
1414
# ------------------------------------------------------------------
@@ -215,7 +215,7 @@ def sorted_krylov_schur(
215215
# sparse matrices.
216216
# Further parts of sorted_krylov_schur were developed based on the function krylov_schur
217217
# https://github.com/zib-cmd/cmdtools/blob/1c6b6d8e1c35bb487fcf247c5c1c622b4b665b0a/src/cmdtools/analysis/pcca.py#L64,
218-
# written by Alex Sikorski, as a prototype.
218+
# written by Alexander Sikorski.
219219
from petsc4py import PETSc
220220
from slepc4py import SLEPc
221221

0 commit comments

Comments
 (0)