From 2a6f96e5db4a92828bc4e48f96ee0f6012c2bdeb Mon Sep 17 00:00:00 2001 From: Afeef Date: Thu, 4 Jul 2024 16:28:13 +0200 Subject: [PATCH] copyright correction --- femutils/CooFormatMatrix.h | 72 +++++++++++++++--------------- femutils/FemUtils.cc | 4 +- femutils/HypreDoFLinearSystem.cc | 2 +- femutils/IDoFLinearSystemFactory.h | 4 +- poisson/BlCsrBiliAssembly.cc | 2 +- poisson/CooBiliAssembly.cc | 6 +-- poisson/CooSortBiliAssembly.cc | 6 +-- poisson/CusparseBiliAssembly.hxx | 6 +-- poisson/LegacyBiliAssembly.cc | 2 +- poisson/NodeWiseCsrBiliAssembly.cc | 2 +- 10 files changed, 53 insertions(+), 53 deletions(-) diff --git a/femutils/CooFormatMatrix.h b/femutils/CooFormatMatrix.h index 297b4b3..1a837d9 100644 --- a/femutils/CooFormatMatrix.h +++ b/femutils/CooFormatMatrix.h @@ -1,11 +1,11 @@ // -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*- //----------------------------------------------------------------------------- -// Copyright 2000-2023 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) +// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) // See the top-level COPYRIGHT file for details. // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* CsrFormatMatrix.cc (C) 2022-2023 */ +/* CsrFormatMatrix.cc (C) 2022-2024 */ /* */ /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ @@ -58,11 +58,11 @@ class CooFormat : TraceAccessor } /** - * @brief - * - * @param row - * @param column - * @param value + * @brief + * + * @param row + * @param column + * @param value */ void matrixAddValue(DoFLocalId row, DoFLocalId column, Real value) { @@ -77,8 +77,8 @@ class CooFormat : TraceAccessor /** * @brief Translate to Arcane linear system - * - * @param linear_system + * + * @param linear_system */ void translateToLinearSystem(DoFLinearSystem& linear_system) { @@ -88,10 +88,10 @@ class CooFormat : TraceAccessor } /** - * @brief function to print the current content of the csr matrix - * - * @param fileName - * @param nonzero if set to true, print only the non zero values + * @brief function to print the current content of the csr matrix + * + * @param fileName + * @param nonzero if set to true, print only the non zero values */ void printMatrix(std::string fileName, bool nonzero) @@ -160,9 +160,9 @@ class CooFormat : TraceAccessor /** * @brief binSearchRow is a binary search through the row to get the * leftmost corresponding index. - * - * @param row - * @return Int32 + * + * @param row + * @return Int32 */ Int32 binSearchRow(Int32 row) { @@ -189,10 +189,10 @@ class CooFormat : TraceAccessor /** * @brief indexValue is a Binsearch through the row and then the column * to get the index of the corresponding value. - * - * @param row - * @param column - * @return Int32 + * + * @param row + * @param column + * @return Int32 */ Int32 indexValue(Int32 row, Int32 column) { @@ -223,11 +223,11 @@ class CooFormat : TraceAccessor } /** - * @brief Quicksort algorithm for the CSR Matrix - * + * @brief Quicksort algorithm for the CSR Matrix + * * @param is_row - * @param start - * @param end + * @param start + * @param end */ void sortMatrix(bool is_row, Int32 start, Int32 end) @@ -244,12 +244,12 @@ class CooFormat : TraceAccessor } /** - * @brief Partition helper for the quickSort - * - * @param is_row - * @param start - * @param end - * @return Int32 + * @brief Partition helper for the quickSort + * + * @param is_row + * @param start + * @param end + * @return Int32 */ Int32 partition(bool is_row, Int32 start, Int32 end) { @@ -275,11 +275,11 @@ class CooFormat : TraceAccessor } /** - * @brief Swap helper for the quickSort - * - * @param is_row - * @param i - * @param j + * @brief Swap helper for the quickSort + * + * @param is_row + * @param i + * @param j */ void swap(bool is_row, Int32 i, Int32 j) { @@ -296,4 +296,4 @@ class CooFormat : TraceAccessor m_matrix_value(j) = tmp_val; } }; -} // namespace Arcane::FemUtils \ No newline at end of file +} // namespace Arcane::FemUtils diff --git a/femutils/FemUtils.cc b/femutils/FemUtils.cc index 7328936..258a590 100644 --- a/femutils/FemUtils.cc +++ b/femutils/FemUtils.cc @@ -1,11 +1,11 @@ // -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*- //----------------------------------------------------------------------------- -// Copyright 2000-2023 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) +// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) // See the top-level COPYRIGHT file for details. // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* FemUtils.cc (C) 2022-2023 */ +/* FemUtils.cc (C) 2022-2024 */ /* */ /* Utilitary classes for FEM. */ /*---------------------------------------------------------------------------*/ diff --git a/femutils/HypreDoFLinearSystem.cc b/femutils/HypreDoFLinearSystem.cc index ac25374..a32ac6e 100644 --- a/femutils/HypreDoFLinearSystem.cc +++ b/femutils/HypreDoFLinearSystem.cc @@ -1,6 +1,6 @@ // -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*- //----------------------------------------------------------------------------- -// Copyright 2000-2023 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) +// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) // See the top-level COPYRIGHT file for details. // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- diff --git a/femutils/IDoFLinearSystemFactory.h b/femutils/IDoFLinearSystemFactory.h index d95b44d..1516be4 100644 --- a/femutils/IDoFLinearSystemFactory.h +++ b/femutils/IDoFLinearSystemFactory.h @@ -1,11 +1,11 @@ // -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*- //----------------------------------------------------------------------------- -// Copyright 2000-2023 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) +// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) // See the top-level COPYRIGHT file for details. // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* IDoFLinearSystemFactory.h (C) 2022-2023 */ +/* IDoFLinearSystemFactory.h (C) 2022-2024 */ /* */ /* Interface to a factory to build a linear system implementation. */ /*---------------------------------------------------------------------------*/ diff --git a/poisson/BlCsrBiliAssembly.cc b/poisson/BlCsrBiliAssembly.cc index 87611b5..eb6f1b4 100644 --- a/poisson/BlCsrBiliAssembly.cc +++ b/poisson/BlCsrBiliAssembly.cc @@ -5,7 +5,7 @@ // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* BlcsrBiliAssembly.hxx (C) 2022-2023 */ +/* BlcsrBiliAssembly.hxx (C) 2022-2024 */ /* */ /* Methods of the bilinear assembly phase using the csr data structure */ /* which avoid to add in the global matrix by iterating through the node. */ diff --git a/poisson/CooBiliAssembly.cc b/poisson/CooBiliAssembly.cc index acc42c9..00b0c22 100644 --- a/poisson/CooBiliAssembly.cc +++ b/poisson/CooBiliAssembly.cc @@ -5,7 +5,7 @@ // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* CooBiliAssembly.hxx (C) 2022-2023 */ +/* CooBiliAssembly.hxx (C) 2022-2024 */ /* */ /* Methods of the bilinear assembly phase using the coo data structure */ /*---------------------------------------------------------------------------*/ @@ -16,8 +16,8 @@ /** * @brief Initialization of the coo matrix. It only works for p=1 since there is * one node per Edge. - * - * + * + * */ void FemModule:: _buildMatrix() diff --git a/poisson/CooSortBiliAssembly.cc b/poisson/CooSortBiliAssembly.cc index e57d84d..64f61fe 100644 --- a/poisson/CooSortBiliAssembly.cc +++ b/poisson/CooSortBiliAssembly.cc @@ -5,7 +5,7 @@ // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* CooSortBiliAssembly.hxx (C) 2022-2023 */ +/* CooSortBiliAssembly.hxx (C) 2022-2024 */ /* */ /* Methods of the bilinear assembly phase using the coo data structure */ /* followed by a sort */ @@ -17,8 +17,8 @@ /** * @brief Initialization of the coo matrix. It only works for p=1 since there is * one node per Edge. - * - * + * + * */ void FemModule:: _buildMatrixSort() diff --git a/poisson/CusparseBiliAssembly.hxx b/poisson/CusparseBiliAssembly.hxx index a93b8c1..d242876 100644 --- a/poisson/CusparseBiliAssembly.hxx +++ b/poisson/CusparseBiliAssembly.hxx @@ -5,7 +5,7 @@ // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* CsrGpuiBiliAssembly.hxx (C) 2022-2023 */ +/* CsrGpuiBiliAssembly.hxx (C) 2022-2024 */ /* */ /* Methods of the bilinear assembly phase using Cusparse library */ /* which build the global matrix by merging local ones */ @@ -235,8 +235,8 @@ _computeCusparseElementMatrix(cusparseCsr& result, cusparseCsr& global, Cell cel /** * @brief Assemble Bilinear TRIA3 with cusparse help. It only works for p=1 since there is * one node per Edge. - * - * + * + * */ void FemModule:: _assembleCusparseBilinearOperatorTRIA3() diff --git a/poisson/LegacyBiliAssembly.cc b/poisson/LegacyBiliAssembly.cc index 9b6e95b..fbef43f 100644 --- a/poisson/LegacyBiliAssembly.cc +++ b/poisson/LegacyBiliAssembly.cc @@ -5,7 +5,7 @@ // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* LegacyBiliAssembly.hxx (C) 2022-2023 */ +/* LegacyBiliAssembly.hxx (C) 2022-2024 */ /* */ /* Methods of the bilinear assembly phase using the legacy data structure */ /*---------------------------------------------------------------------------*/ diff --git a/poisson/NodeWiseCsrBiliAssembly.cc b/poisson/NodeWiseCsrBiliAssembly.cc index c520eec..321dac1 100644 --- a/poisson/NodeWiseCsrBiliAssembly.cc +++ b/poisson/NodeWiseCsrBiliAssembly.cc @@ -5,7 +5,7 @@ // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* BlcsrBiliAssembly.hxx (C) 2022-2023 */ +/* BlcsrBiliAssembly.hxx (C) 2022-2024 */ /* */ /* Methods of the bilinear assembly phase using the csr data structure */ /* which avoid to add in the global matrix by iterating through the node. */