diff --git a/tdvisu/construct_dpdb_visu.py b/tdvisu/construct_dpdb_visu.py index 11422f6..3ecc324 100644 --- a/tdvisu/construct_dpdb_visu.py +++ b/tdvisu/construct_dpdb_visu.py @@ -6,7 +6,7 @@ and reference https://github.com/VaeterchenFrost/dp_on_dbs.git -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tdvisu/dijkstra.py b/tdvisu/dijkstra.py index 8f30497..9c4b30d 100644 --- a/tdvisu/dijkstra.py +++ b/tdvisu/dijkstra.py @@ -6,7 +6,7 @@ cs.princeton.edu/courses/archive/spr06/cos423/Handouts/EPP%20shortest%20path%20algorithms.pdf -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke Modified sourcecode from NetworkX. Copyright (C) 2004-2020, NetworkX Developers diff --git a/tdvisu/reader.py b/tdvisu/reader.py index c377624..6842d80 100644 --- a/tdvisu/reader.py +++ b/tdvisu/reader.py @@ -21,7 +21,7 @@ def main() Copyright (C) 2020 Patrick Thier https://github.com/Fend0r, TU Wien, - Martin Röbke, TU Dresden +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tdvisu/svgjoin.py b/tdvisu/svgjoin.py index ea06ab8..76a9964 100644 --- a/tdvisu/svgjoin.py +++ b/tdvisu/svgjoin.py @@ -3,7 +3,7 @@ Load and manipulate svg images. Could also be streamed as string. -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tdvisu/utilities.py b/tdvisu/utilities.py index ba9b6e3..77281ec 100644 --- a/tdvisu/utilities.py +++ b/tdvisu/utilities.py @@ -3,7 +3,7 @@ Helper methods for this module. -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -471,7 +471,7 @@ def get_parser(extra_desc: str = "") -> argparse.ArgumentParser: """ parser = argparse.ArgumentParser( description=""" - Copyright (C) 2020 Martin Röbke + Copyright (C) 2020-2024 Martin Röbke This program comes with ABSOLUTELY NO WARRANTY This is free software, and you are welcome to redistribute it under certain conditions; see COPYING for more information. diff --git a/tdvisu/visualization.py b/tdvisu/visualization.py index c0f3e1f..a1ded6a 100644 --- a/tdvisu/visualization.py +++ b/tdvisu/visualization.py @@ -8,7 +8,7 @@ https://github.com/VaeterchenFrost/GPUSAT -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -780,7 +780,7 @@ def main(args: List[str]) -> None: nargs="?", type=argparse.FileType("r", encoding="UTF-8"), default=sys.stdin, - help="Input file for the visualization " "must conform with the 'JsonAPI.md'", + help="Input file for the visualization must conform with the 'JsonAPI.md'", ) parser.add_argument("outfolder", help="Folder to output the visualization results") diff --git a/tdvisu/visualization_data.py b/tdvisu/visualization_data.py index 8f2c9ee..c03767f 100644 --- a/tdvisu/visualization_data.py +++ b/tdvisu/visualization_data.py @@ -3,7 +3,7 @@ Visualization Data -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/test/test_bag_creation.py b/test/test_bag_creation.py index 37cd633..8445527 100644 --- a/test/test_bag_creation.py +++ b/test/test_bag_creation.py @@ -2,7 +2,7 @@ """ Testing creation of bag strings in visualization.py -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/test/test_construct_dpdb.py b/test/test_construct_dpdb.py index 6bfd653..84f864d 100644 --- a/test/test_construct_dpdb.py +++ b/test/test_construct_dpdb.py @@ -3,7 +3,7 @@ Testing construct_dpdb_visu.py -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/test/test_dijkstra.py b/test/test_dijkstra.py index ff146e6..a6d0472 100644 --- a/test/test_dijkstra.py +++ b/test/test_dijkstra.py @@ -3,7 +3,7 @@ Testing dijkstra.py -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/test/test_reader.py b/test/test_reader.py index fb7934f..69fdeab 100644 --- a/test/test_reader.py +++ b/test/test_reader.py @@ -3,7 +3,7 @@ Testing reader.py -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/test/test_svgjoin.py b/test/test_svgjoin.py index 18a1342..57f6ee2 100644 --- a/test/test_svgjoin.py +++ b/test/test_svgjoin.py @@ -3,7 +3,7 @@ Testing svgjoin.py -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/test/test_utilities.py b/test/test_utilities.py index 2b49035..bfabd5e 100644 --- a/test/test_utilities.py +++ b/test/test_utilities.py @@ -2,7 +2,7 @@ """ Testing utilities.py -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/test/test_version.py b/test/test_version.py index 7dd9b37..dd871c9 100644 --- a/test/test_version.py +++ b/test/test_version.py @@ -2,7 +2,7 @@ """ Testing version.py -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/test/test_visualization.py b/test/test_visualization.py index 7ad26aa..d688d25 100644 --- a/test/test_visualization.py +++ b/test/test_visualization.py @@ -3,7 +3,7 @@ Testing visualization.py -Copyright (C) 2020 Martin Röbke +Copyright (C) 2020-2024 Martin Röbke This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by