Changeset 10000 in ntrip for branches/BNC_2.13


Ignore:
Timestamp:
Mar 1, 2023, 12:16:29 PM (14 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.13/src/PPP/pppFilter.cpp

    r9998 r10000  
    266266    if (iObs == -1) {
    267267      LOG << " number of observations == " << iObs + 1 << "\n";
     268      if (preProcessing) {
     269        _obsPool->setRefSatChangeRequired(sys, true);
     270        return success;
     271      }     
    268272      return failure;
    269273    }
     
    761765    }
    762766
    763     if (!iObs) {
     767    if (!(iObs+1)) {
    764768      continue;
    765769    }
    766     _datumTrafo->updateIndices(sys, iObs + 1); //LOG << "AA Ncols/Nrows: " << AA.Ncols() << "/" << AA.Nrows() << "  nPar: "  << nPar << endl;    //LOG << "AA.SubMatrix(1 .. " << iObs+1 << " , 1 .. " <<  nPar << ")" << endl;
     770    _datumTrafo->updateIndices(sys, iObs + 1);
     771#ifdef BNC_DEBUG_PPP
     772    LOG << "AA Ncols/Nrows: " << AA.Ncols() << "/" << AA.Nrows() << "  nPar: "  << nPar << endl;
     773    LOG << "AA.SubMatrix(1 .. " << iObs+1 << " , 1 .. " <<  nPar << ")" << endl;
     774#endif
    767775    if (_datumTrafo->prepareAA(AA.SubMatrix(1, iObs + 1, 1, nPar), 2)
    768776        != success) {
Note: See TracChangeset for help on using the changeset viewer.