Changed ostream_iterator<double> to use AtomType rather than double.
Stupid me!
This commit is contained in:
parent
686e7f3273
commit
543d5a5918
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ class eoFixedLength : public EO<FitT>, public std::vector<GeneType>
|
||||||
|
|
||||||
os << size() << ' ';
|
os << size() << ' ';
|
||||||
|
|
||||||
std::copy(begin(), end(), ostream_iterator<double>(os, " "));
|
std::copy(begin(), end(), ostream_iterator<AtomType>(os, " "));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// reading...
|
/// reading...
|
||||||
|
|
|
||||||
Reference in a new issue