http://matrixprogramming.com/files/code/TAUCS/test_taucs_lowlevel.cpp
Evgenii
On 06.10.2011 16:17 rt said the following:
> Hi,
>
> I have a symmetric, spd taucs matrix (lower). I am able to factor
> as:
>
> taucs_ccs_order( T,&perm,&invperm, "metis" ); Aod =
> taucs_ccs_permute_symmetrically( T, perm, invperm ); F =
> taucs_ccs_factor_llt_mf( Aod ); taucs_ccs_matrix* C =
> (taucs_ccs_matrix*) taucs_supernodal_factor_to_ccs( F );
>
> Is it possible to re-order C?
>
> More generally, I wasn't sure how the symmetric permutation returned
> by taucs_ccs_order works. For example,
>
> int* perm = (int*) calloc(n, sizeof(int)); int* invperm = (int*)
> calloc(n, sizeof(int)); taucs_ccs_matrix* Aod = NULL, *Bod = NULL;
> taucs_ccs_order(T,&perm,&invperm, "metis"); Aod = (taucs_ccs_matrix*)
Well, you need then the factor indeed. Unfortunately I do not know how
restore it, sorry.
Evgenii
On 12.10.2011 21:41 rt said the following: