From cf1f1d3080feedf3d065cfa305efdc9ed963cdab Mon Sep 17 00:00:00 2001 From: Justin Carpentier Date: Sun, 9 Jun 2024 08:25:37 +0200 Subject: [PATCH 1/2] cmake: sync submodule --- cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake b/cmake index 756930f63..dd3e4127f 160000 --- a/cmake +++ b/cmake @@ -1 +1 @@ -Subproject commit 756930f636b06f0ac06dbdd1f9177993e0dd9266 +Subproject commit dd3e4127f2b223496859fe05be02726e9d1a071b From 1039fa015e8116b4cbb5745c507ed89f886db171 Mon Sep 17 00:00:00 2001 From: Justin Carpentier Date: Sun, 9 Jun 2024 08:42:24 +0200 Subject: [PATCH 2/2] all: remove license from files --- include/eigenpy/solvers/BFGSPreconditioners.hpp | 14 +------------- include/eigenpy/solvers/BasicPreconditioners.hpp | 14 +------------- include/eigenpy/solvers/ConjugateGradient.hpp | 14 +------------- include/eigenpy/solvers/IterativeSolverBase.hpp | 14 +------------- .../solvers/LeastSquaresConjugateGradient.hpp | 14 +------------- include/eigenpy/solvers/SparseSolverBase.hpp | 14 +------------- include/eigenpy/solvers/preconditioners.hpp | 14 +------------- src/solvers/preconditioners.cpp | 14 +------------- 8 files changed, 8 insertions(+), 104 deletions(-) diff --git a/include/eigenpy/solvers/BFGSPreconditioners.hpp b/include/eigenpy/solvers/BFGSPreconditioners.hpp index d0cde6cc2..2fd368339 100644 --- a/include/eigenpy/solvers/BFGSPreconditioners.hpp +++ b/include/eigenpy/solvers/BFGSPreconditioners.hpp @@ -1,17 +1,5 @@ /* - * Copyright 2017, Justin Carpentier, LAAS-CNRS - * - * This file is part of eigenpy. - * eigenpy is free software: you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation, either version 3 of - * the License, or (at your option) any later version. - * eigenpy 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 Lesser General Public License for more details. You should - * have received a copy of the GNU Lesser General Public License along - * with eigenpy. If not, see . + * Copyright 2017 CNRS */ #ifndef __eigenpy_bfgs_preconditioners_hpp__ diff --git a/include/eigenpy/solvers/BasicPreconditioners.hpp b/include/eigenpy/solvers/BasicPreconditioners.hpp index ae2b98274..d74ee3f22 100644 --- a/include/eigenpy/solvers/BasicPreconditioners.hpp +++ b/include/eigenpy/solvers/BasicPreconditioners.hpp @@ -1,17 +1,5 @@ /* - * Copyright 2017, Justin Carpentier, LAAS-CNRS - * - * This file is part of eigenpy. - * eigenpy is free software: you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation, either version 3 of - * the License, or (at your option) any later version. - * eigenpy 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 Lesser General Public License for more details. You should - * have received a copy of the GNU Lesser General Public License along - * with eigenpy. If not, see . + * Copyright 2017 CNRS */ #ifndef __eigenpy_basic_preconditioners_hpp__ diff --git a/include/eigenpy/solvers/ConjugateGradient.hpp b/include/eigenpy/solvers/ConjugateGradient.hpp index 0d291b22d..6f41e9d78 100644 --- a/include/eigenpy/solvers/ConjugateGradient.hpp +++ b/include/eigenpy/solvers/ConjugateGradient.hpp @@ -1,17 +1,5 @@ /* - * Copyright 2017, Justin Carpentier, LAAS-CNRS - * - * This file is part of eigenpy. - * eigenpy is free software: you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation, either version 3 of - * the License, or (at your option) any later version. - * eigenpy 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 Lesser General Public License for more details. You should - * have received a copy of the GNU Lesser General Public License along - * with eigenpy. If not, see . + * Copyright 2017 CNRS */ #ifndef __eigenpy_conjugate_gradient_hpp__ diff --git a/include/eigenpy/solvers/IterativeSolverBase.hpp b/include/eigenpy/solvers/IterativeSolverBase.hpp index 7bbdcb36c..561a5ab89 100644 --- a/include/eigenpy/solvers/IterativeSolverBase.hpp +++ b/include/eigenpy/solvers/IterativeSolverBase.hpp @@ -1,17 +1,5 @@ /* - * Copyright 2017, Justin Carpentier, LAAS-CNRS - * - * This file is part of eigenpy. - * eigenpy is free software: you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation, either version 3 of - * the License, or (at your option) any later version. - * eigenpy 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 Lesser General Public License for more details. You should - * have received a copy of the GNU Lesser General Public License along - * with eigenpy. If not, see . + * Copyright 2017 CNRS */ #ifndef __eigenpy_iterative_solver_base_hpp__ diff --git a/include/eigenpy/solvers/LeastSquaresConjugateGradient.hpp b/include/eigenpy/solvers/LeastSquaresConjugateGradient.hpp index a84a73784..3107270e0 100644 --- a/include/eigenpy/solvers/LeastSquaresConjugateGradient.hpp +++ b/include/eigenpy/solvers/LeastSquaresConjugateGradient.hpp @@ -1,17 +1,5 @@ /* - * Copyright 2017-2018, Justin Carpentier, LAAS-CNRS - * - * This file is part of eigenpy. - * eigenpy is free software: you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation, either version 3 of - * the License, or (at your option) any later version. - * eigenpy 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 Lesser General Public License for more details. You should - * have received a copy of the GNU Lesser General Public License along - * with eigenpy. If not, see . + * Copyright 2017-2018 CNRS */ #ifndef __eigenpy_least_square_conjugate_gradient_hpp__ diff --git a/include/eigenpy/solvers/SparseSolverBase.hpp b/include/eigenpy/solvers/SparseSolverBase.hpp index cf1ad620a..9874be789 100644 --- a/include/eigenpy/solvers/SparseSolverBase.hpp +++ b/include/eigenpy/solvers/SparseSolverBase.hpp @@ -1,17 +1,5 @@ /* - * Copyright 2017, Justin Carpentier, LAAS-CNRS - * - * This file is part of eigenpy. - * eigenpy is free software: you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation, either version 3 of - * the License, or (at your option) any later version. - * eigenpy 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 Lesser General Public License for more details. You should - * have received a copy of the GNU Lesser General Public License along - * with eigenpy. If not, see . + * Copyright 2017 CNRS */ #ifndef __eigenpy_sparse_solver_base_hpp__ diff --git a/include/eigenpy/solvers/preconditioners.hpp b/include/eigenpy/solvers/preconditioners.hpp index 18cb4c7ae..3e26638ba 100644 --- a/include/eigenpy/solvers/preconditioners.hpp +++ b/include/eigenpy/solvers/preconditioners.hpp @@ -1,17 +1,5 @@ /* - * Copyright 2017, Justin Carpentier, LAAS-CNRS - * - * This file is part of eigenpy. - * eigenpy is free software: you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation, either version 3 of - * the License, or (at your option) any later version. - * eigenpy 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 Lesser General Public License for more details. You should - * have received a copy of the GNU Lesser General Public License along - * with eigenpy. If not, see . + * Copyright 2017 CNRS */ #ifndef __eigenpy_preconditioners_hpp__ diff --git a/src/solvers/preconditioners.cpp b/src/solvers/preconditioners.cpp index c91ed913b..29cf55b64 100644 --- a/src/solvers/preconditioners.cpp +++ b/src/solvers/preconditioners.cpp @@ -1,17 +1,5 @@ /* - * Copyright 2017-2018, Justin Carpentier, LAAS-CNRS - * - * This file is part of eigenpy. - * eigenpy is free software: you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation, either version 3 of - * the License, or (at your option) any later version. - * eigenpy 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 Lesser General Public License for more details. You should - * have received a copy of the GNU Lesser General Public License along - * with eigenpy. If not, see . + * Copyright 2017 CNRS */ #include