Changeset 10791 in ntrip for trunk/BNC/newmat/newmat3.cpp


Ignore:
Timestamp:
Dec 3, 2025, 5:37:16 PM (8 months ago)
Author:
mervart
Message:

BNC Multifrequency and PPPAR Client (initial version)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/newmat/newmat3.cpp

    r9434 r10791  
    668668         Throw(InternalException("SymmetricBandMatrix::GetRow(MatrixRowCol&)"));
    669669      int w = w1+lower_val; s += w-ncols_val; Real* RowCopy;
    670       if (s>0) w -= s; mrc.storage = w; int w2 = w-w1;
     670      if (s>0) w -= s;
     671      mrc.storage = w;
     672      int w2 = w-w1;
    671673      if (!(mrc.cw*HaveStore))
    672674      {
     
    709711         Throw(InternalException("SymmetricBandMatrix::GetCol(MatrixRowCol&)"));
    710712      int w = w1+lower_val; s += w-ncols_val; Real* ColCopy;
    711       if (s>0) w -= s; mrc.storage = w; int w2 = w-w1;
     713      if (s>0) w -= s;
     714      mrc.storage = w;
     715      int w2 = w-w1;
    712716
    713717      if ( +(mrc.cw*HaveStore) ) { REPORT ColCopy = mrc.data; }
     
    759763
    760764      int w = w1+lower_val; s += w-ncols_val;
    761       if (s>0) w -= s; mrc.storage = w; int w2 = w-w1;
     765      if (s>0) w -= s;
     766      mrc.storage = w;
     767      int w2 = w-w1;
    762768
    763769      Real* ColCopy = mrc.data = mrc.store+mrc.skip;
Note: See TracChangeset for help on using the changeset viewer.