From d404523120552dbb07ece3b89ab39ab66d0d1f84 Mon Sep 17 00:00:00 2001 From: Josh Davies Date: Wed, 14 Jan 2026 10:00:01 +0000 Subject: [PATCH] update Copyright year and add notice where missing Files for grcc are attributed to T. Kaneko. --- scripts/update-copyright.sh | 3 ++- 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/diawrap.cc | 30 ++++++++++++++++++++++++++++++ sources/dict.c | 2 +- sources/dollar.c | 2 +- sources/evaluate.c | 30 ++++++++++++++++++++++++++++++ sources/execute.c | 2 +- sources/extcmd.c | 2 +- sources/factor.c | 2 +- sources/findpat.c | 2 +- sources/flintinterface.cc | 26 ++++++++++++++++++++++++++ sources/flintinterface.h | 26 ++++++++++++++++++++++++++ sources/flintwrap.cc | 26 ++++++++++++++++++++++++++ sources/float.c | 2 +- sources/form3.h | 2 +- sources/fsizes.h | 2 +- sources/ftypes.h | 2 +- sources/function.c | 2 +- sources/fwin.h | 2 +- sources/grcc.cc | 23 +++++++++++++++++++++++ sources/grcc.h | 23 +++++++++++++++++++++++ sources/grccparam.h | 23 +++++++++++++++++++++++ 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/model.c | 30 ++++++++++++++++++++++++++++++ sources/module.c | 2 +- sources/mpi.c | 2 +- sources/mpidbg.h | 2 +- sources/mytime.cc | 27 +++++++++++++++++++++++++++ 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/transform.c | 2 +- sources/unix.h | 2 +- sources/unixfile.c | 2 +- sources/variable.h | 2 +- sources/vector.h | 2 +- sources/wildcard.c | 2 +- 86 files changed, 341 insertions(+), 76 deletions(-) diff --git a/scripts/update-copyright.sh b/scripts/update-copyright.sh index 1b5a67b65..d2a2c0014 100755 --- a/scripts/update-copyright.sh +++ b/scripts/update-copyright.sh @@ -17,12 +17,13 @@ set -eu year=$(date +%Y) -grep -l -r 'Copyright *(C).*Vermaseren' . | while IFS= read -r f; do +grep -l -r 'Copyright *(C).*' . | 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" + sed -i "s/Copyright *(C).*Kaneko/Copyright (C) 2023-$year T. Kaneko/g" "$f" ;; esac done diff --git a/sources/argument.c b/sources/argument.c index 93e878bd8..9e972d5f6 100644 --- a/sources/argument.c +++ b/sources/argument.c @@ -6,7 +6,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 90a3afb20..1074194de 100644 --- a/sources/bugtool.c +++ b/sources/bugtool.c @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 177442b6a..8ef50b984 100644 --- a/sources/checkpoint.c +++ b/sources/checkpoint.c @@ -53,7 +53,7 @@ #] Explanations : #[ License : * - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 02da6b4cb..f352b4476 100644 --- a/sources/comexpr.c +++ b/sources/comexpr.c @@ -7,7 +7,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 440ea9c15..21eedf543 100644 --- a/sources/compcomm.c +++ b/sources/compcomm.c @@ -9,7 +9,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 dcaa3c0eb..acf3b3a52 100644 --- a/sources/compiler.c +++ b/sources/compiler.c @@ -14,7 +14,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 aa5dd2213..58a800c6c 100644 --- a/sources/compress.c +++ b/sources/compress.c @@ -6,7 +6,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 c1269591b..ace43f4ba 100644 --- a/sources/comtool.c +++ b/sources/comtool.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 02cd1c097..5aa3c3809 100644 --- a/sources/comtool.h +++ b/sources/comtool.h @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 4d6bfcca9..61ea6aa40 100644 --- a/sources/declare.h +++ b/sources/declare.h @@ -8,7 +8,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 683548780..7edd9c507 100644 --- a/sources/diagrams.c +++ b/sources/diagrams.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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/diawrap.cc b/sources/diawrap.cc index e9b0800f8..8eb140f47 100644 --- a/sources/diawrap.cc +++ b/sources/diawrap.cc @@ -1,3 +1,33 @@ +/** @file diawrap.cc + * + * Functions with interface FORM with grcc, to implement the diagrams_ function. + */ +/* #[ License : */ +/* + * Copyright (C) 1984-2026 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 + * for by FOM the Dutch physics granting agency and we would like to + * be able to track its scientific use to convince FOM of its value + * for the community. + * + * This file is part of FORM. + * + * FORM is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * FORM is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with FORM. If not, see . + */ +/* #] License : */ // #[ Includes : diawrap.cc extern "C" { diff --git a/sources/dict.c b/sources/dict.c index 39c285281..2801e2f52 100644 --- a/sources/dict.c +++ b/sources/dict.c @@ -17,7 +17,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 cdfc1faf3..c02c48d47 100644 --- a/sources/dollar.c +++ b/sources/dollar.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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/evaluate.c b/sources/evaluate.c index 936a4f40e..98e977d23 100644 --- a/sources/evaluate.c +++ b/sources/evaluate.c @@ -1,3 +1,33 @@ +/** @file evaluate.c + * + * Evaluation of functions for the floating-point system, by interfacing with MPFR. + */ +/* #[ License : */ +/* + * Copyright (C) 1984-2026 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 + * for by FOM the Dutch physics granting agency and we would like to + * be able to track its scientific use to convince FOM of its value + * for the community. + * + * This file is part of FORM. + * + * FORM is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * FORM is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with FORM. If not, see . + */ +/* #] License : */ /* #[ includes : */ diff --git a/sources/execute.c b/sources/execute.c index 7c7bad274..ce3307695 100644 --- a/sources/execute.c +++ b/sources/execute.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 55199a39e..2e575b425 100644 --- a/sources/extcmd.c +++ b/sources/extcmd.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 99499c4bb..cc4b82246 100644 --- a/sources/factor.c +++ b/sources/factor.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 17538e85d..48f707a4c 100644 --- a/sources/findpat.c +++ b/sources/findpat.c @@ -12,7 +12,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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/flintinterface.cc b/sources/flintinterface.cc index 4c435877f..2d7368390 100644 --- a/sources/flintinterface.cc +++ b/sources/flintinterface.cc @@ -3,6 +3,32 @@ * Contains functions which interface with FLINT functions to perform arithmetic with uni- and * multi-variate polynomials and perform factorization. */ +/* #[ License : */ +/* + * Copyright (C) 1984-2026 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 + * for by FOM the Dutch physics granting agency and we would like to + * be able to track its scientific use to convince FOM of its value + * for the community. + * + * This file is part of FORM. + * + * FORM is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * FORM is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with FORM. If not, see . + */ +/* #] License : */ #ifdef HAVE_CONFIG_H #ifndef CONFIG_H_INCLUDED diff --git a/sources/flintinterface.h b/sources/flintinterface.h index 203c15dd2..88386b0fe 100644 --- a/sources/flintinterface.h +++ b/sources/flintinterface.h @@ -3,6 +3,32 @@ * * Prototypes for functions in flintinterface.cc */ +/* #[ License : */ +/* + * Copyright (C) 1984-2026 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 + * for by FOM the Dutch physics granting agency and we would like to + * be able to track its scientific use to convince FOM of its value + * for the community. + * + * This file is part of FORM. + * + * FORM is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * FORM is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with FORM. If not, see . + */ +/* #] License : */ extern "C" { #include "form3.h" diff --git a/sources/flintwrap.cc b/sources/flintwrap.cc index 7a9b34a85..83d97530b 100644 --- a/sources/flintwrap.cc +++ b/sources/flintwrap.cc @@ -2,6 +2,32 @@ * * Contains functions to call FLINT interface from the rest of FORM. */ +/* #[ License : */ +/* + * Copyright (C) 1984-2026 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 + * for by FOM the Dutch physics granting agency and we would like to + * be able to track its scientific use to convince FOM of its value + * for the community. + * + * This file is part of FORM. + * + * FORM is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * FORM is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with FORM. If not, see . + */ +/* #] License : */ extern "C" { #include "form3.h" diff --git a/sources/float.c b/sources/float.c index c496dc30f..23bf112c6 100644 --- a/sources/float.c +++ b/sources/float.c @@ -10,7 +10,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 224c6cc0f..cb2410ddc 100644 --- a/sources/form3.h +++ b/sources/form3.h @@ -7,7 +7,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 d20f4489c..bcd877a01 100644 --- a/sources/fsizes.h +++ b/sources/fsizes.h @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 b3b354a46..a3388485e 100644 --- a/sources/ftypes.h +++ b/sources/ftypes.h @@ -8,7 +8,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 1f0c963d3..2d50d772b 100644 --- a/sources/function.c +++ b/sources/function.c @@ -7,7 +7,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 5d596ce57..3159ca97e 100644 --- a/sources/fwin.h +++ b/sources/fwin.h @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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/grcc.cc b/sources/grcc.cc index e2d2829a7..cc1d55604 100644 --- a/sources/grcc.cc +++ b/sources/grcc.cc @@ -2,6 +2,29 @@ //************************************************************** // grcc.cc +/* #[ License : */ +/* + * Copyright (C) 2023-2026 T. Kaneko + * When using this file you are requested to refer to the publication + * Comput.Phys.Commun. 92 (1995) 127-152 + * + * This file is part of FORM. + * + * FORM is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * FORM is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with FORM. If not, see . + */ +/* #] License : */ + #ifndef NOFORM extern "C" { #include "form3.h" diff --git a/sources/grcc.h b/sources/grcc.h index 4efb9d8ef..34317d2f5 100644 --- a/sources/grcc.h +++ b/sources/grcc.h @@ -1,5 +1,28 @@ #pragma once +/* #[ License : */ +/* + * Copyright (C) 2023-2026 T. Kaneko + * When using this file you are requested to refer to the publication + * Comput.Phys.Commun. 92 (1995) 127-152 + * + * This file is part of FORM. + * + * FORM is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * FORM is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with FORM. If not, see . + */ +/* #] License : */ + #include #include #include diff --git a/sources/grccparam.h b/sources/grccparam.h index 88d03e5dd..61df472e7 100644 --- a/sources/grccparam.h +++ b/sources/grccparam.h @@ -2,6 +2,29 @@ #else #define GRCC_PARAM_H +/* #[ License : */ +/* + * Copyright (C) 2023-2026 T. Kaneko + * When using this file you are requested to refer to the publication + * Comput.Phys.Commun. 92 (1995) 127-152 + * + * This file is part of FORM. + * + * FORM is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * FORM is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with FORM. If not, see . + */ +/* #] License : */ + /*============================================================== * Parameters */ diff --git a/sources/if.c b/sources/if.c index 3a9823a08..0e0f24850 100644 --- a/sources/if.c +++ b/sources/if.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 4ea24c748..70fc26db5 100644 --- a/sources/index.c +++ b/sources/index.c @@ -7,7 +7,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 9a15b0896..6114fbf7b 100644 --- a/sources/inivar.h +++ b/sources/inivar.h @@ -6,7 +6,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 8aae0fc7e..a993fd1da 100644 --- a/sources/lus.c +++ b/sources/lus.c @@ -6,7 +6,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 ef7cb2563..d314c68a9 100644 --- a/sources/mallocprotect.h +++ b/sources/mallocprotect.h @@ -9,7 +9,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 bb28e44b4..6083707dc 100644 --- a/sources/message.c +++ b/sources/message.c @@ -8,7 +8,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 f3b014c88..7a525d93b 100644 --- a/sources/minos.c +++ b/sources/minos.c @@ -6,7 +6,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 faab2791b..d8825a261 100644 --- a/sources/minos.h +++ b/sources/minos.h @@ -16,7 +16,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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/model.c b/sources/model.c index 81ce8606b..f296f1370 100644 --- a/sources/model.c +++ b/sources/model.c @@ -1,3 +1,33 @@ +/** @file model.c + * + * Implementation of "Model", required by the diagrams_ function. + */ +/* #[ License : */ +/* + * Copyright (C) 1984-2026 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 + * for by FOM the Dutch physics granting agency and we would like to + * be able to track its scientific use to convince FOM of its value + * for the community. + * + * This file is part of FORM. + * + * FORM is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * FORM is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with FORM. If not, see . + */ +/* #] License : */ /* #[ Explanations : diff --git a/sources/module.c b/sources/module.c index f9aa74537..5ac2cbe97 100644 --- a/sources/module.c +++ b/sources/module.c @@ -6,7 +6,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 640d5f5d7..2a8aa5738 100644 --- a/sources/mpi.c +++ b/sources/mpi.c @@ -8,7 +8,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 28fc67482..924096e6d 100644 --- a/sources/mpidbg.h +++ b/sources/mpidbg.h @@ -9,7 +9,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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.cc b/sources/mytime.cc index 9a0cfadcc..f9f0ed45b 100644 --- a/sources/mytime.cc +++ b/sources/mytime.cc @@ -1,3 +1,30 @@ +/* #[ License : */ +/* + * Copyright (C) 1984-2026 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 + * for by FOM the Dutch physics granting agency and we would like to + * be able to track its scientific use to convince FOM of its value + * for the community. + * + * This file is part of FORM. + * + * FORM is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * FORM is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with FORM. If not, see . + */ +/* #] License : */ + #ifdef HAVE_CONFIG_H #include #endif diff --git a/sources/mytime.h b/sources/mytime.h index 132cfe762..7dab8bc1d 100644 --- a/sources/mytime.h +++ b/sources/mytime.h @@ -1,7 +1,7 @@ #pragma once /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 b22d0c731..3e39c28a2 100644 --- a/sources/names.c +++ b/sources/names.c @@ -8,7 +8,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 582d6d276..7e5254ff7 100644 --- a/sources/normal.c +++ b/sources/normal.c @@ -9,7 +9,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 78271160e..2ed0e6438 100644 --- a/sources/notation.c +++ b/sources/notation.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 ed55d9c42..892634978 100644 --- a/sources/opera.c +++ b/sources/opera.c @@ -8,7 +8,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 4336f7034..fc67c38cb 100644 --- a/sources/optimize.cc +++ b/sources/optimize.cc @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 05b7f3ac3..a8b1e690f 100644 --- a/sources/parallel.c +++ b/sources/parallel.c @@ -10,7 +10,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 026c1e580..dbd8b96f4 100644 --- a/sources/parallel.h +++ b/sources/parallel.h @@ -8,7 +8,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 7a7ffc20c..07b1cbc12 100644 --- a/sources/pattern.c +++ b/sources/pattern.c @@ -11,7 +11,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 8bf1869dc..013a2d1e5 100644 --- a/sources/poly.cc +++ b/sources/poly.cc @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 0ea34f935..5e8de70bb 100644 --- a/sources/poly.h +++ b/sources/poly.h @@ -1,7 +1,7 @@ #pragma once /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 701485606..ada14a4b2 100644 --- a/sources/polyfact.cc +++ b/sources/polyfact.cc @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 dba1fa317..beca5fa7a 100644 --- a/sources/polyfact.h +++ b/sources/polyfact.h @@ -1,7 +1,7 @@ #pragma once /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 d96032ad0..d6eb77ca3 100644 --- a/sources/polygcd.cc +++ b/sources/polygcd.cc @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 bfcb7a44f..d630e9f54 100644 --- a/sources/polygcd.h +++ b/sources/polygcd.h @@ -1,7 +1,7 @@ #pragma once /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 88b149b7a..b7caebe45 100644 --- a/sources/polywrap.cc +++ b/sources/polywrap.cc @@ -7,7 +7,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 e83593cd1..6b7b49ce3 100644 --- a/sources/portsignals.h +++ b/sources/portsignals.h @@ -17,7 +17,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 42ba41b55..cee078183 100644 --- a/sources/pre.c +++ b/sources/pre.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 40fb5cf5e..ed2c433bd 100644 --- a/sources/proces.c +++ b/sources/proces.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 7d6734792..6c8a70bfc 100644 --- a/sources/ratio.c +++ b/sources/ratio.c @@ -7,7 +7,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 2b454ff7e..902856a41 100644 --- a/sources/reken.c +++ b/sources/reken.c @@ -10,7 +10,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 818c25edd..f1a590e48 100644 --- a/sources/reshuf.c +++ b/sources/reshuf.c @@ -8,7 +8,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 7a66fe691..9a591cf91 100644 --- a/sources/sch.c +++ b/sources/sch.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 e2e76a59c..a61cde245 100644 --- a/sources/setfile.c +++ b/sources/setfile.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 3a7a84af8..73b74325f 100644 --- a/sources/smart.c +++ b/sources/smart.c @@ -11,7 +11,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 1fe2435a0..3fbf39c98 100644 --- a/sources/sort.c +++ b/sources/sort.c @@ -16,7 +16,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 4cc0959d5..96777da32 100644 --- a/sources/spectator.c +++ b/sources/spectator.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 1b39678f9..db5f0da54 100644 --- a/sources/startup.c +++ b/sources/startup.c @@ -7,7 +7,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 2fcdd15ff..0a7ecd3a3 100644 --- a/sources/store.c +++ b/sources/store.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 32ad34162..74119d8ce 100644 --- a/sources/structs.h +++ b/sources/structs.h @@ -16,7 +16,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 54bea7477..a118429d4 100644 --- a/sources/symmetr.c +++ b/sources/symmetr.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 d87ffb025..2b3a8dece 100644 --- a/sources/tables.c +++ b/sources/tables.c @@ -5,7 +5,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 7be36a0de..9176e4c6a 100644 --- a/sources/threads.c +++ b/sources/threads.c @@ -21,7 +21,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 db13575a2..aca0e72d0 100644 --- a/sources/token.c +++ b/sources/token.c @@ -7,7 +7,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 3af8b1e56..e1277b47c 100644 --- a/sources/tools.c +++ b/sources/tools.c @@ -10,7 +10,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 3b951e66c..d2b11fb8f 100644 --- a/sources/transform.c +++ b/sources/transform.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 0bd75a065..826bdbc00 100644 --- a/sources/unix.h +++ b/sources/unix.h @@ -5,7 +5,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 d877f80c1..bc819592e 100644 --- a/sources/unixfile.c +++ b/sources/unixfile.c @@ -4,7 +4,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 f64741f55..0060c1a1b 100644 --- a/sources/variable.h +++ b/sources/variable.h @@ -12,7 +12,7 @@ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 9defdd2cb..e52b33ca6 100644 --- a/sources/vector.h +++ b/sources/vector.h @@ -19,7 +19,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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 b7d88f9f1..9eebe1c7f 100644 --- a/sources/wildcard.c +++ b/sources/wildcard.c @@ -11,7 +11,7 @@ */ /* #[ License : */ /* - * Copyright (C) 1984-2023 J.A.M. Vermaseren + * Copyright (C) 1984-2026 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