IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9995


Ignore:
Timestamp:
Nov 14, 2006, 4:47:55 PM (19 years ago)
Author:
Paul Price
Message:

Fixing compilation errors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psSparse.c

    r9991 r9995  
    1212#include "psConstants.h"
    1313#include "psSparse.h"
    14 
     14#include "psAbort.h"
    1515
    1616#define BUFFER 100                      // Size to increment at each go
     
    5959    if (i < j) {
    6060        // psError(PS_ERR_UNKNOWN, true, "i=%d, j=%d refers to a sub-diagonal element. not allowed!");
    61         psAbort (__func__, "i=%d, j=%d refers to a sub-diagonal element. not allowed!");
     61        psAbort (__func__, "i=%d, j=%d refers to a sub-diagonal element. not allowed!", i, j);
    6262        return false;
    6363    }
     
    214214    /*** psSparseBorder Functions : these are used to solve a matrix equation of the form:
    215215      A x = f  where A is partitioned into:
    216       A = |S B| where Q is a low-rank square matrix (N<20) 
     216      A = |S B| where Q is a low-rank square matrix (N<20)
    217217          |B Q| and B is a rectangular band (technically this is B and B^T)
    218       and S is a sparse matrix. 
     218      and S is a sparse matrix.
    219219    */
    220220
Note: See TracChangeset for help on using the changeset viewer.