Changeset 5a2599 for molecuilder/src
- Timestamp:
- Apr 26, 2010, 4:13:02 PM (15 years ago)
- Children:
- 732da7
- Parents:
- bb50e0 (diff), 424890 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/unittests/AnalysisCorrelationToPointUnitTest.cpp
rbb50e0 r5a2599 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.