Index: trunk/BNC/src/PPP/pppFilter.cpp
===================================================================
--- trunk/BNC/src/PPP/pppFilter.cpp	(revision 9612)
+++ trunk/BNC/src/PPP/pppFilter.cpp	(revision 9618)
@@ -270,13 +270,5 @@
       return failure;
     }
-    if (!preProcessing &&
-        (OPT->_obsModelType == OPT->DCMcodeBias ||
-         OPT->_obsModelType == OPT->DCMphaseBias))  {
-      if (nSat < 2.0) {
-        LOG << " number of observations < 2\n";
-        return failure;
-      }
-    }
-
+    
     if ((!iOutlier) &&
         (OPT->_obsModelType == OPT->DCMcodeBias ||
@@ -718,4 +710,5 @@
     for (unsigned jj = 0; jj < allObs.size(); jj++) {
       if (allObs[jj]->prn().system() == sys) {
+        allObs[jj]->resetOutlier();
         obsVector.push_back(allObs[jj]);
       }
Index: trunk/BNC/src/PPP/pppSatObs.cpp
===================================================================
--- trunk/BNC/src/PPP/pppSatObs.cpp	(revision 9612)
+++ trunk/BNC/src/PPP/pppSatObs.cpp	(revision 9618)
@@ -632,11 +632,11 @@
 ////////////////////////////////////////////////////////////////////////////
 void t_pppSatObs::printObsMinusComputed() const {
-// TODO: LOG should be LOG
-  cout.setf(ios::fixed);
-  cout << "\nOBS-COMP for Satellite " << _prn.toString() << (isReference() ? " (Reference Satellite)" : "") << endl
+// TODO: cout should be LOG
+  LOG.setf(ios::fixed);
+  LOG << "\nOBS-COMP for Satellite " << _prn.toString() << (isReference() ? " (Reference Satellite)" : "") << endl
        << "========================== " << endl;
   for (unsigned ii = 0; ii < OPT->LCs(_prn.system()).size(); ii++) {
     t_lc::type tLC = OPT->LCs(_prn.system())[ii];
-    cout << "OBS-CMP " << setw(4) << t_lc::toString(tLC) << ": " << _prn.toString() << " "
+    LOG << "OBS-CMP " << setw(4) << t_lc::toString(tLC) << ": " << _prn.toString() << " "
         << setw(12) << setprecision(3) << obsValue(tLC) << " "
         << setw(12) << setprecision(3) << cmpValue(tLC) << " "
@@ -644,5 +644,4 @@
   }
 }
-
 
 //
