mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
various fixes in headers
This commit is contained in:
parent
71a3e96b49
commit
ac8f7d8c9c
@ -1,3 +1,32 @@
|
|||||||
|
// -*- coding: utf-8
|
||||||
|
// vim: set fileencoding=utf-8
|
||||||
|
|
||||||
|
// This file is part of Eigen, a lightweight C++ template library
|
||||||
|
// for linear algebra.
|
||||||
|
//
|
||||||
|
// Copyright (C) 2009 Thomas Capricelli <orzel@freehackers.org>
|
||||||
|
//
|
||||||
|
// Eigen 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.
|
||||||
|
//
|
||||||
|
// Alternatively, 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 2 of
|
||||||
|
// the License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// Eigen 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 or the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Lesser General Public
|
||||||
|
// License and a copy of the GNU General Public License along with
|
||||||
|
// Eigen. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
#ifndef EIGEN_HYBRIDNONLINEARSOLVER_H
|
||||||
|
#define EIGEN_HYBRIDNONLINEARSOLVER_H
|
||||||
|
|
||||||
template<typename FunctorType, typename Scalar=double>
|
template<typename FunctorType, typename Scalar=double>
|
||||||
class HybridNonLinearSolver
|
class HybridNonLinearSolver
|
||||||
@ -723,3 +752,6 @@ HybridNonLinearSolver<FunctorType,Scalar>::solveNumericalDiff(
|
|||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//vim: ai ts=4 sts=4 et sw=4
|
||||||
|
#endif // EIGEN_HYBRIDNONLINEARSOLVER_H
|
||||||
|
|
||||||
|
@ -1,4 +1,32 @@
|
|||||||
|
// -*- coding: utf-8
|
||||||
|
// vim: set fileencoding=utf-8
|
||||||
|
|
||||||
|
// This file is part of Eigen, a lightweight C++ template library
|
||||||
|
// for linear algebra.
|
||||||
|
//
|
||||||
|
// Copyright (C) 2009 Thomas Capricelli <orzel@freehackers.org>
|
||||||
|
//
|
||||||
|
// Eigen 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.
|
||||||
|
//
|
||||||
|
// Alternatively, 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 2 of
|
||||||
|
// the License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// Eigen 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 or the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Lesser General Public
|
||||||
|
// License and a copy of the GNU General Public License along with
|
||||||
|
// Eigen. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
#ifndef EIGEN_LEVENBERGMARQUARDT__H
|
||||||
|
#define EIGEN_LEVENBERGMARQUARDT__H
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Performs non linear optimization over a non-linear function,
|
* \brief Performs non linear optimization over a non-linear function,
|
||||||
@ -719,5 +747,6 @@ LevenbergMarquardt<FunctorType,Scalar>::lmdif1(
|
|||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//vim: ai ts=4 sts=4 et sw=4
|
||||||
|
#endif // EIGEN_LEVENBERGMARQUARDT__H
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
// -*- coding: utf-8
|
||||||
|
// vim: set fileencoding=utf-8
|
||||||
|
|
||||||
// This file is part of Eigen, a lightweight C++ template library
|
// This file is part of Eigen, a lightweight C++ template library
|
||||||
// for linear algebra.
|
// for linear algebra.
|
||||||
//
|
//
|
||||||
@ -145,4 +148,6 @@ private:
|
|||||||
Scalar epsfcn;
|
Scalar epsfcn;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//vim: ai ts=4 sts=4 et sw=4
|
||||||
#endif // EIGEN_NUMERICAL_DIFF_H
|
#endif // EIGEN_NUMERICAL_DIFF_H
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user