From 9d8215bd45eb3ec549cf06d37daa0ea689369fe0 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 27 Nov 2025 00:37:16 +0000 Subject: [PATCH] Adjusted copyright template for code files --- src/main.cpp | 30 +++++++++++++++++------------- src/numerics.cpp | 28 ++++++++++++++++------------ src/numerics.hpp | 27 +++++++++++++++------------ 3 files changed, 48 insertions(+), 37 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index df62439..5b24395 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,17 +1,8 @@ -/* Copyright (C) 2024 Aryadev Chavali - - * This program 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 Version 2 for - * details. - - * You may distribute and modify this code under the terms of the GNU General - * Public License Version 2, which you should have received a copy of along with - * this program. If not, please go to . - - * Created: 2024-07-25 +/* main.cpp: Entrypoint + * Created: 2025-11-20 * Author: Aryadev Chavali - * Description: Entrypoint + * License: See end of file + * Commentary: 2024-07-25 */ #include "./numerics.hpp" @@ -218,3 +209,16 @@ int main(void) CloseWindow(); return 0; } + +/* Copyright (C) 2024, 2025 Aryadev Chavali + + * This program 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 Version 2 for + * details. + + * You may distribute and modify this code under the terms of the GNU General + * Public License Version 2, which you should have received a copy of along with + * this program. If not, please go to . + + */ diff --git a/src/numerics.cpp b/src/numerics.cpp index db8003c..2405f1f 100644 --- a/src/numerics.cpp +++ b/src/numerics.cpp @@ -1,17 +1,8 @@ -/* Copyright (C) 2024 Aryadev Chavali - - * This program 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 Version 2 for - * details. - - * You may distribute and modify this code under the terms of the GNU General - * Public License Version 2, which you should have received a copy of along with - * this program. If not, please go to . - +/* numerics.cpp: Implementation of numerics * Created: 2024-07-26 * Author: Aryadev Chavali - * Description: Implementation of numerics + * License: See end of file + * Commentary: */ #include "./numerics.hpp" @@ -147,3 +138,16 @@ std::string to_string(const NodeAllocator &allocator, const index_t n, ss << ")"; return ss.str(); } + +/* Copyright (C) 2024, 2025 Aryadev Chavali + + * This program 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 Version 2 for + * details. + + * You may distribute and modify this code under the terms of the GNU General + * Public License Version 2, which you should have received a copy of along with + * this program. If not, please go to . + + */ diff --git a/src/numerics.hpp b/src/numerics.hpp index 6d6004c..59d969e 100644 --- a/src/numerics.hpp +++ b/src/numerics.hpp @@ -1,17 +1,8 @@ -/* Copyright (C) 2024 Aryadev Chavali - - * This program 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 Version 2 for - * details. - - * You may distribute and modify this code under the terms of the GNU General - * Public License Version 2, which you should have received a copy of along with - * this program. If not, please go to . - +/* numerics.hpp: Computation necessary for generating the tree * Created: 2024-07-26 * Author: Aryadev Chavali - * Description: Computation necessary for generating the tree + * License: See end of file + * Commentary: */ #ifndef NUMERICS_HPP @@ -67,3 +58,15 @@ std::string to_string(const Fraction &); std::string to_string(const NodeAllocator &, const index_t, int depth = 1); #endif + +/* Copyright (C) 2024, 2025 Aryadev Chavali + + * This program 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 Version 2 for + * details. + + * You may distribute and modify this code under the terms of the GNU General + * Public License Version 2, which you should have received a copy of along with + * this program. If not, please go to . + */