| // This file is part of Eigen, a lightweight C++ template library |
| // for linear algebra. |
| // |
| // Copyright (C) 2012 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr> |
| // |
| // 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/>. |
| |
| /* This file is a modified version of heap_relax_snode.c file in SuperLU |
| * -- SuperLU routine (version 3.0) -- |
| * Univ. of California Berkeley, Xerox Palo Alto Research Center, |
| * and Lawrence Berkeley National Lab. |
| * October 15, 2003 |
| * |
| * Copyright (c) 1994 by Xerox Corporation. All rights reserved. |
| * |
| * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY |
| * EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN RISK. |
| * |
| * Permission is hereby granted to use or copy this program for any |
| * purpose, provided the above notices are retained on all copies. |
| * Permission to modify the code and to distribute modified code is |
| * granted, provided the above notices are retained, and a notice that |
| * the code was modified is included with the above copyright notice. |
| */ |
| |
| #ifndef SPARSELU_RELAX_SNODE_H |
| #define SPARSELU_RELAX_SNODE_H |
| /** |
| * \brief Identify the initial relaxed supernodes |
| * |
| * This routine is applied to a column elimination tree. |
| * It assumes that the matrix has been reordered according to the postorder of the etree |
| * \param et elimination tree |
| * \param relax_columns Maximum number of columns allowed in a relaxed snode |
| * \param descendants Number of descendants of each node in the etree |
| * \param relax_end last column in a supernode |
| */ |
| template <typename IndexVector> |
| void LU_relax_snode (const int n, IndexVector& et, const int relax_columns, IndexVector& descendants, IndexVector& relax_end) |
| { |
| |
| // compute the number of descendants of each node in the etree |
| int j, parent; |
| relax_end.setConstant(IND_EMPTY); |
| descendants.setZero(); |
| for (j = 0; j < n; j++) |
| { |
| parent = et(j); |
| if (parent != n) // not the dummy root |
| descendants(parent) += descendants(j) + 1; |
| } |
| // Identify the relaxed supernodes by postorder traversal of the etree |
| int snode_start; // beginning of a snode |
| for (j = 0; j < n; ) |
| { |
| parent = et(j); |
| snode_start = j; |
| while ( parent != n && descendants(parent) < relax_columns ) |
| { |
| j = parent; |
| parent = et(j); |
| } |
| // Found a supernode in postordered etree, j is the last column |
| relax_end(snode_start) = j; // Record last column |
| j++; |
| // Search for a new leaf |
| while (descendants(j) != 0 && j < n) j++; |
| } // End postorder traversal of the etree |
| |
| } |
| #endif |