From 722a8a62ef4b91e8b5cb46a2ccbf550af03ebf5e Mon Sep 17 00:00:00 2001 From: Takahiro Ueda Date: Tue, 11 Apr 2023 13:40:32 +0900 Subject: [PATCH] chore: get ready for v4.3.1 --- README.md | 2 +- scripts/update-copyright.sh | 19 ++++++++++++++++--- sources/argument.c | 2 +- sources/bugtool.c | 2 +- sources/checkpoint.c | 2 +- sources/comexpr.c | 2 +- sources/compcomm.c | 2 +- sources/compiler.c | 2 +- sources/compress.c | 2 +- sources/comtool.c | 2 +- sources/comtool.h | 2 +- sources/declare.h | 2 +- sources/diagrams.c | 2 +- sources/dict.c | 2 +- sources/dollar.c | 2 +- sources/execute.c | 2 +- sources/extcmd.c | 2 +- sources/factor.c | 2 +- sources/findpat.c | 2 +- sources/form3.h | 2 +- sources/fsizes.h | 2 +- sources/ftypes.h | 2 +- sources/function.c | 2 +- sources/fwin.h | 2 +- sources/if.c | 2 +- sources/index.c | 2 +- sources/inivar.h | 2 +- sources/lus.c | 2 +- sources/mallocprotect.h | 2 +- sources/message.c | 2 +- sources/minos.c | 2 +- sources/minos.h | 2 +- sources/module.c | 2 +- sources/mpi.c | 2 +- sources/mpidbg.h | 2 +- sources/mytime.h | 2 +- sources/names.c | 2 +- sources/normal.c | 2 +- sources/notation.c | 2 +- sources/opera.c | 2 +- sources/optimize.cc | 2 +- sources/parallel.c | 2 +- sources/parallel.h | 2 +- sources/pattern.c | 2 +- sources/poly.cc | 2 +- sources/poly.h | 2 +- sources/polyfact.cc | 2 +- sources/polyfact.h | 2 +- sources/polygcd.cc | 2 +- sources/polygcd.h | 2 +- sources/polywrap.cc | 2 +- sources/portsignals.h | 2 +- sources/pre.c | 2 +- sources/proces.c | 2 +- sources/ratio.c | 2 +- sources/reken.c | 2 +- sources/reshuf.c | 2 +- sources/sch.c | 2 +- sources/setfile.c | 2 +- sources/smart.c | 2 +- sources/sort.c | 2 +- sources/spectator.c | 2 +- sources/startup.c | 2 +- sources/store.c | 2 +- sources/structs.h | 2 +- sources/symmetr.c | 2 +- sources/tables.c | 2 +- sources/threads.c | 2 +- sources/token.c | 2 +- sources/tools.c | 2 +- sources/topowrap.cc | 2 +- sources/transform.c | 2 +- sources/unix.h | 2 +- sources/unixfile.c | 2 +- sources/variable.h | 2 +- sources/vector.h | 2 +- sources/wildcard.c | 2 +- 77 files changed, 92 insertions(+), 79 deletions(-) diff --git a/README.md b/README.md index 897ed324..d659ecf7 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ For more advanced build options, see the file "[INSTALL](INSTALL)". Additional information ---------------------- -The latest reference manual can be found [here](https://github.com/vermaseren/form/releases/download/v4.3.0/form-4.3.0-manual.pdf) and the Form Cookbook can be found [here](https://github.com/vermaseren/form/wiki/FORM-Cookbook). +The latest reference manual can be found [here](https://github.com/vermaseren/form/releases/download/v4.3.1/form-4.3.1-manual.pdf) and the Form Cookbook can be found [here](https://github.com/vermaseren/form/wiki/FORM-Cookbook). More background information, a collection of FORM programs, and a number of courses can be found on the official [FORM website](http://www.nikhef.nl/~form) and on the [Wiki](https://github.com/vermaseren/form/wiki). diff --git a/scripts/update-copyright.sh b/scripts/update-copyright.sh index 33b5dd14..1b5a67b6 100755 --- a/scripts/update-copyright.sh +++ b/scripts/update-copyright.sh @@ -8,8 +8,21 @@ # # in all files in the current directory and its subdirectories. # -# NOTE: GNU grep/xargs/sed required. +# NOTE: GNU grep/sed required. +# +# Usage: +# update-copyright.sh # set -eu -grep -l -r 'Copyright *(C).*Vermaseren' . \ - | xargs sed -i 's/Copyright *(C).*Vermaseren/Copyright (C) 1984-2022 J.A.M. Vermaseren/g' + +year=$(date +%Y) + +grep -l -r 'Copyright *(C).*Vermaseren' . | while IFS= read -r f; do + case $f in + *update-copyright.sh) + ;; + *) + sed -i "s/Copyright *(C).*Vermaseren/Copyright (C) 1984-$year J.A.M. Vermaseren/g" "$f" + ;; + esac +done diff --git a/sources/argument.c b/sources/argument.c index d660c079..a466e574 100644 --- a/sources/argument.c +++ b/sources/argument.c @@ -6,7 +6,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/bugtool.c b/sources/bugtool.c index d4fb9c03..90a3afb2 100644 --- a/sources/bugtool.c +++ b/sources/bugtool.c @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/checkpoint.c b/sources/checkpoint.c index d00178e9..0070e6d2 100644 --- a/sources/checkpoint.c +++ b/sources/checkpoint.c @@ -53,7 +53,7 @@ #] Explanations : #[ License : * - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/comexpr.c b/sources/comexpr.c index 8bb6a982..b0bdf081 100644 --- a/sources/comexpr.c +++ b/sources/comexpr.c @@ -7,7 +7,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/compcomm.c b/sources/compcomm.c index 40b60525..03ef5dfa 100644 --- a/sources/compcomm.c +++ b/sources/compcomm.c @@ -9,7 +9,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/compiler.c b/sources/compiler.c index 63eb2939..5f03d46f 100644 --- a/sources/compiler.c +++ b/sources/compiler.c @@ -14,7 +14,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/compress.c b/sources/compress.c index 4400d4db..aa5dd221 100644 --- a/sources/compress.c +++ b/sources/compress.c @@ -6,7 +6,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/comtool.c b/sources/comtool.c index 3955dfe8..26cfffcd 100644 --- a/sources/comtool.c +++ b/sources/comtool.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/comtool.h b/sources/comtool.h index 16a92d5b..02cd1c09 100644 --- a/sources/comtool.h +++ b/sources/comtool.h @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/declare.h b/sources/declare.h index 62ae461c..501a1c0b 100644 --- a/sources/declare.h +++ b/sources/declare.h @@ -8,7 +8,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/diagrams.c b/sources/diagrams.c index 61039a0c..cd25f39e 100644 --- a/sources/diagrams.c +++ b/sources/diagrams.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/dict.c b/sources/dict.c index ffad9d33..ad450e34 100644 --- a/sources/dict.c +++ b/sources/dict.c @@ -17,7 +17,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/dollar.c b/sources/dollar.c index 4c868099..d0c95d4b 100644 --- a/sources/dollar.c +++ b/sources/dollar.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/execute.c b/sources/execute.c index 61a9a4bf..146a5fb1 100644 --- a/sources/execute.c +++ b/sources/execute.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/extcmd.c b/sources/extcmd.c index cad28bec..e124fdaf 100644 --- a/sources/extcmd.c +++ b/sources/extcmd.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/factor.c b/sources/factor.c index 542a041b..99499c4b 100644 --- a/sources/factor.c +++ b/sources/factor.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/findpat.c b/sources/findpat.c index 3bbfec7d..96dc8b5f 100644 --- a/sources/findpat.c +++ b/sources/findpat.c @@ -12,7 +12,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/form3.h b/sources/form3.h index c60fb863..14be80ab 100644 --- a/sources/form3.h +++ b/sources/form3.h @@ -7,7 +7,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/fsizes.h b/sources/fsizes.h index b04320d8..ca72e0fd 100644 --- a/sources/fsizes.h +++ b/sources/fsizes.h @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/ftypes.h b/sources/ftypes.h index 1b432223..1407e86a 100644 --- a/sources/ftypes.h +++ b/sources/ftypes.h @@ -8,7 +8,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/function.c b/sources/function.c index f6272d59..1417ed0b 100644 --- a/sources/function.c +++ b/sources/function.c @@ -7,7 +7,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/fwin.h b/sources/fwin.h index 64679e64..5d596ce5 100644 --- a/sources/fwin.h +++ b/sources/fwin.h @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/if.c b/sources/if.c index ff046d53..1f1dbe5b 100644 --- a/sources/if.c +++ b/sources/if.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/index.c b/sources/index.c index 80a0b99d..85d434ff 100644 --- a/sources/index.c +++ b/sources/index.c @@ -7,7 +7,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/inivar.h b/sources/inivar.h index 060d754f..1c7860c4 100644 --- a/sources/inivar.h +++ b/sources/inivar.h @@ -6,7 +6,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/lus.c b/sources/lus.c index 4cb2431a..2acac93b 100644 --- a/sources/lus.c +++ b/sources/lus.c @@ -6,7 +6,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/mallocprotect.h b/sources/mallocprotect.h index d8858f6f..5849ec23 100644 --- a/sources/mallocprotect.h +++ b/sources/mallocprotect.h @@ -9,7 +9,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/message.c b/sources/message.c index 3b7c790e..ca199efe 100644 --- a/sources/message.c +++ b/sources/message.c @@ -8,7 +8,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/minos.c b/sources/minos.c index b432c3fd..536d45a4 100644 --- a/sources/minos.c +++ b/sources/minos.c @@ -6,7 +6,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/minos.h b/sources/minos.h index 31760cce..6b29f3c7 100644 --- a/sources/minos.h +++ b/sources/minos.h @@ -16,7 +16,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/module.c b/sources/module.c index bbc726f4..88828b02 100644 --- a/sources/module.c +++ b/sources/module.c @@ -6,7 +6,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/mpi.c b/sources/mpi.c index 1762824d..c9142b86 100644 --- a/sources/mpi.c +++ b/sources/mpi.c @@ -8,7 +8,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/mpidbg.h b/sources/mpidbg.h index 54ff35db..dfda3acd 100644 --- a/sources/mpidbg.h +++ b/sources/mpidbg.h @@ -9,7 +9,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/mytime.h b/sources/mytime.h index 9d1fe0cf..132cfe76 100644 --- a/sources/mytime.h +++ b/sources/mytime.h @@ -1,7 +1,7 @@ #pragma once /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/names.c b/sources/names.c index fb2ea46d..f1914ff3 100644 --- a/sources/names.c +++ b/sources/names.c @@ -8,7 +8,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/normal.c b/sources/normal.c index 6e312986..fb19ecd6 100644 --- a/sources/normal.c +++ b/sources/normal.c @@ -9,7 +9,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/notation.c b/sources/notation.c index ab519493..a05ba287 100644 --- a/sources/notation.c +++ b/sources/notation.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/opera.c b/sources/opera.c index 0babca63..1d4e84d1 100644 --- a/sources/opera.c +++ b/sources/opera.c @@ -8,7 +8,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/optimize.cc b/sources/optimize.cc index 9478ae5a..192f567a 100644 --- a/sources/optimize.cc +++ b/sources/optimize.cc @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/parallel.c b/sources/parallel.c index 596c07d6..0ed89f32 100644 --- a/sources/parallel.c +++ b/sources/parallel.c @@ -10,7 +10,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/parallel.h b/sources/parallel.h index 10b62328..f2250883 100644 --- a/sources/parallel.h +++ b/sources/parallel.h @@ -8,7 +8,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/pattern.c b/sources/pattern.c index 3f52b62d..cf34fa8a 100644 --- a/sources/pattern.c +++ b/sources/pattern.c @@ -11,7 +11,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/poly.cc b/sources/poly.cc index cf42e4cf..1553ca4f 100644 --- a/sources/poly.cc +++ b/sources/poly.cc @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/poly.h b/sources/poly.h index 204c3fdd..0364b379 100644 --- a/sources/poly.h +++ b/sources/poly.h @@ -1,7 +1,7 @@ #pragma once /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/polyfact.cc b/sources/polyfact.cc index b8aa2088..d1319db4 100644 --- a/sources/polyfact.cc +++ b/sources/polyfact.cc @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/polyfact.h b/sources/polyfact.h index 29ad410c..dba1fa31 100644 --- a/sources/polyfact.h +++ b/sources/polyfact.h @@ -1,7 +1,7 @@ #pragma once /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/polygcd.cc b/sources/polygcd.cc index 707d480d..726f2453 100644 --- a/sources/polygcd.cc +++ b/sources/polygcd.cc @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/polygcd.h b/sources/polygcd.h index efca5c1c..bfcb7a44 100644 --- a/sources/polygcd.h +++ b/sources/polygcd.h @@ -1,7 +1,7 @@ #pragma once /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/polywrap.cc b/sources/polywrap.cc index a18b6fa4..f62cf8bf 100644 --- a/sources/polywrap.cc +++ b/sources/polywrap.cc @@ -7,7 +7,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/portsignals.h b/sources/portsignals.h index 5f78d2e8..e83593cd 100644 --- a/sources/portsignals.h +++ b/sources/portsignals.h @@ -17,7 +17,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/pre.c b/sources/pre.c index 6aa45bf4..504e2822 100644 --- a/sources/pre.c +++ b/sources/pre.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/proces.c b/sources/proces.c index fbb46185..5ef69761 100644 --- a/sources/proces.c +++ b/sources/proces.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/ratio.c b/sources/ratio.c index 3241df03..e8957e86 100644 --- a/sources/ratio.c +++ b/sources/ratio.c @@ -7,7 +7,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/reken.c b/sources/reken.c index 84e14578..f606ed80 100644 --- a/sources/reken.c +++ b/sources/reken.c @@ -10,7 +10,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/reshuf.c b/sources/reshuf.c index 51fbbe24..e9a1acd8 100644 --- a/sources/reshuf.c +++ b/sources/reshuf.c @@ -8,7 +8,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/sch.c b/sources/sch.c index 58b1d29e..3dd48846 100644 --- a/sources/sch.c +++ b/sources/sch.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/setfile.c b/sources/setfile.c index 081f8a96..2c065bbc 100644 --- a/sources/setfile.c +++ b/sources/setfile.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/smart.c b/sources/smart.c index dc4f9c0f..f7076bf1 100644 --- a/sources/smart.c +++ b/sources/smart.c @@ -11,7 +11,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/sort.c b/sources/sort.c index d56238c4..348d7995 100644 --- a/sources/sort.c +++ b/sources/sort.c @@ -16,7 +16,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/spectator.c b/sources/spectator.c index 7689029a..6c8a81d6 100644 --- a/sources/spectator.c +++ b/sources/spectator.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/startup.c b/sources/startup.c index 29971b0b..6b8e5d60 100644 --- a/sources/startup.c +++ b/sources/startup.c @@ -7,7 +7,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/store.c b/sources/store.c index 05c3ffd1..776dc2d8 100644 --- a/sources/store.c +++ b/sources/store.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/structs.h b/sources/structs.h index 88102f66..0c34f8d0 100644 --- a/sources/structs.h +++ b/sources/structs.h @@ -16,7 +16,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/symmetr.c b/sources/symmetr.c index 8a771fdb..13703e1c 100644 --- a/sources/symmetr.c +++ b/sources/symmetr.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/tables.c b/sources/tables.c index 4dd33536..8d6572d3 100644 --- a/sources/tables.c +++ b/sources/tables.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/threads.c b/sources/threads.c index 57e909f6..a8b7f163 100644 --- a/sources/threads.c +++ b/sources/threads.c @@ -21,7 +21,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/token.c b/sources/token.c index c4c7c6ac..1b9ad23c 100644 --- a/sources/token.c +++ b/sources/token.c @@ -7,7 +7,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/tools.c b/sources/tools.c index 3279d076..73b22815 100644 --- a/sources/tools.c +++ b/sources/tools.c @@ -10,7 +10,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/topowrap.cc b/sources/topowrap.cc index 97c11d73..d960346a 100644 --- a/sources/topowrap.cc +++ b/sources/topowrap.cc @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/transform.c b/sources/transform.c index ef50049d..2bed08e8 100644 --- a/sources/transform.c +++ b/sources/transform.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/unix.h b/sources/unix.h index 5004612f..06082cfd 100644 --- a/sources/unix.h +++ b/sources/unix.h @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/unixfile.c b/sources/unixfile.c index 0229c9c9..d877f80c 100644 --- a/sources/unixfile.c +++ b/sources/unixfile.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/variable.h b/sources/variable.h index 4eba1669..24dd8559 100644 --- a/sources/variable.h +++ b/sources/variable.h @@ -12,7 +12,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/vector.h b/sources/vector.h index 74abd5d1..9defdd2c 100644 --- a/sources/vector.h +++ b/sources/vector.h @@ -19,7 +19,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid diff --git a/sources/wildcard.c b/sources/wildcard.c index a132365e..9245b0c9 100644 --- a/sources/wildcard.c +++ b/sources/wildcard.c @@ -11,7 +11,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2022 J.A.M. Vermaseren + * Copyright (C) 1984-2023 J.A.M. Vermaseren * When using this file you are requested to refer to the publication * J.A.M.Vermaseren "New features of FORM" math-ph/0010025 * This is considered a matter of courtesy as the development was paid