triangular solve... almost finished

This commit is contained in:
Desire NUENTSA
2012-06-08 17:23:38 +02:00
parent f091879d77
commit 7bdaa60f6c
3 changed files with 153 additions and 19 deletions

View File

@@ -110,7 +110,7 @@ class SuperNodalMatrix
}
/**
* Return the pointers to the beginning of each column in \ref outerIndexPtr()
* Return the pointers to the beginning of each column in \ref valuePtr()
*/
Index* colIndexPtr()
{
@@ -146,7 +146,13 @@ class SuperNodalMatrix
return m_sup_to_col;
}
/**
* Return the number of supernodes
*/
int nsuper()
{
return m_nsuper;
}
class InnerIterator;
class SuperNodeIterator;