2007-10-11 20:14:01 +00:00
|
|
|
// This file is part of gen, a lightweight C++ template library
|
|
|
|
|
// for linear algebra. gen itself is part of the KDE project.
|
2007-10-01 17:07:38 +00:00
|
|
|
//
|
2007-10-07 16:40:49 +00:00
|
|
|
// Copyright (C) 2006-2007 Benoit Jacob <jacob@math.jussieu.fr>
|
2007-10-01 17:07:38 +00:00
|
|
|
//
|
2007-10-11 20:14:01 +00:00
|
|
|
// gen is free software; you can redistribute it and/or modify it under the
|
2007-10-01 17:07:38 +00:00
|
|
|
// terms of the GNU General Public License as published by the Free Software
|
|
|
|
|
// Foundation; either version 2 or (at your option) any later version.
|
|
|
|
|
//
|
2007-10-11 20:14:01 +00:00
|
|
|
// gen is distributed in the hope that it will be useful, but WITHOUT ANY
|
2007-10-01 17:07:38 +00:00
|
|
|
// 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
|
2007-10-11 20:14:01 +00:00
|
|
|
// with gen; if not, write to the Free Software Foundation, Inc., 51
|
2007-10-01 17:07:38 +00:00
|
|
|
// Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
//
|
|
|
|
|
// As a special exception, if other files instantiate templates or use macros
|
|
|
|
|
// or functions from this file, or you compile this file and link it
|
|
|
|
|
// with other works to produce a work based on this file, this file does not
|
|
|
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
|
|
|
|
// License. This exception does not invalidate any other reasons why a work
|
|
|
|
|
// based on this file might be covered by the GNU General Public License.
|
|
|
|
|
|
2007-10-07 16:40:49 +00:00
|
|
|
#ifndef EI_TRACE_H
|
|
|
|
|
#define EI_TRACE_H
|
2007-10-01 17:07:38 +00:00
|
|
|
|
2007-10-11 20:14:01 +00:00
|
|
|
template<int Index, int Rows, typename Derived> struct TraceUnroller
|
2007-10-01 17:07:38 +00:00
|
|
|
{
|
2007-10-08 07:17:54 +00:00
|
|
|
static void run(const Derived &mat, typename Derived::Scalar &trace)
|
2007-10-07 16:40:49 +00:00
|
|
|
{
|
2007-10-11 20:14:01 +00:00
|
|
|
TraceUnroller<Index-1, Rows, Derived>::run(mat, trace);
|
2007-10-10 06:33:09 +00:00
|
|
|
trace += mat(Index, Index);
|
2007-10-07 16:40:49 +00:00
|
|
|
}
|
2007-10-01 17:07:38 +00:00
|
|
|
};
|
|
|
|
|
|
2007-10-11 20:14:01 +00:00
|
|
|
template<int Rows, typename Derived> struct TraceUnroller<0, Rows, Derived>
|
2007-10-01 17:07:38 +00:00
|
|
|
{
|
2007-10-08 07:17:54 +00:00
|
|
|
static void run(const Derived &mat, typename Derived::Scalar &trace)
|
|
|
|
|
{
|
2007-10-10 06:33:09 +00:00
|
|
|
trace = mat(0, 0);
|
2007-10-08 07:17:54 +00:00
|
|
|
}
|
|
|
|
|
};
|
2007-10-07 16:40:49 +00:00
|
|
|
|
2007-10-11 20:14:01 +00:00
|
|
|
template<int Index, typename Derived> struct TraceUnroller<Index, Dynamic, Derived>
|
2007-10-08 07:17:54 +00:00
|
|
|
{
|
|
|
|
|
static void run(const Derived &mat, typename Derived::Scalar &trace)
|
2007-10-07 16:40:49 +00:00
|
|
|
{
|
|
|
|
|
EI_UNUSED(mat);
|
|
|
|
|
EI_UNUSED(trace);
|
|
|
|
|
}
|
2007-10-01 17:07:38 +00:00
|
|
|
};
|
|
|
|
|
|
2007-10-07 16:40:49 +00:00
|
|
|
template<typename Scalar, typename Derived>
|
2007-10-11 20:14:01 +00:00
|
|
|
Scalar Object<Scalar, Derived>::trace() const
|
2007-10-07 16:40:49 +00:00
|
|
|
{
|
|
|
|
|
assert(rows() == cols());
|
|
|
|
|
Scalar res;
|
2007-10-11 20:14:01 +00:00
|
|
|
if(RowsAtCompileTime != Dynamic && RowsAtCompileTime <= 16)
|
|
|
|
|
TraceUnroller<RowsAtCompileTime-1, RowsAtCompileTime, Derived>
|
2007-10-07 16:40:49 +00:00
|
|
|
::run(*static_cast<const Derived*>(this), res);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
res = read(0, 0);
|
|
|
|
|
for(int i = 1; i < rows(); i++)
|
|
|
|
|
res += read(i, i);
|
|
|
|
|
}
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // EI_TRACE_H
|