sparse/*.c, drop unnecessary (int *) cast

This commit is contained in:
rlar 2013-04-28 13:49:55 +02:00
parent 2517756eff
commit a5d131d8a5
1 changed files with 2 additions and 2 deletions

View File

@ -603,8 +603,8 @@ spPartition(MatrixPtr eMatrix, int Mode)
assert( Mode == spAUTO_PARTITION );
/* Otherwise, count all operations needed in when factoring matrix. */
Nc = (int *)Matrix->MarkowitzRow;
No = (int *)Matrix->MarkowitzCol;
Nc = Matrix->MarkowitzRow;
No = Matrix->MarkowitzCol;
Nm = (int *)Matrix->MarkowitzProd;
/* Start mock-factorization. */