Changeset 424890 for molecuilder/src
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/unittests/AnalysisCorrelationToPointUnitTest.cpp
rb1c92e r424890 118 118 // put pair correlation into bins and check with no range 119 119 binmap = BinData( pointmap, 0.5, 0., 0. ); 120 CPPUNIT_ASSERT_EQUAL( (size_t)2, binmap->size());121 //OutputCorrelation ( binmap);120 OutputCorrelation ( (ofstream *)&cout, binmap ); 121 CPPUNIT_ASSERT_EQUAL( (size_t)3, binmap->size() ); 122 122 tester = binmap->begin(); 123 123 CPPUNIT_ASSERT_EQUAL( 1., tester->first ); … … 131 131 // ... and check with [0., 2.] range 132 132 binmap = BinData( pointmap, 0.5, 0., 2. ); 133 OutputCorrelation ( (ofstream *)&cout, binmap ); 133 134 CPPUNIT_ASSERT_EQUAL( (size_t)5, binmap->size() ); 134 //OutputCorrelation ( binmap );135 135 tester = binmap->begin(); 136 136 CPPUNIT_ASSERT_EQUAL( 0., tester->first );
Note:
See TracChangeset
for help on using the changeset viewer.