diff options
-rw-r--r-- | histogram.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/histogram.cpp b/histogram.cpp index ab6d651..a12cd75 100644 --- a/histogram.cpp +++ b/histogram.cpp @@ -95,7 +95,7 @@ int main(int argc,char **argv){ int binidx=0,tally=0,maxtally=-1; for(double v : values){ if(v<low||v>high){ - cerr<<"Point "<<v<<" out of range!"<<endl; + // cerr<<"Point "<<v<<" out of range!"<<endl; continue; } int bin=(v-low)/(high-low)*nbins; |