Changed ostream_iterator<double> to use AtomType rather than double.

Stupid me!
This commit is contained in:
maartenkeijzer 2000-10-06 07:32:26 +00:00
commit 543d5a5918

View file

@ -60,7 +60,7 @@ class eoFixedLength : public EO<FitT>, public std::vector<GeneType>
os << size() << ' ';
std::copy(begin(), end(), ostream_iterator<double>(os, " "));
std::copy(begin(), end(), ostream_iterator<AtomType>(os, " "));
}
/// reading...