Mercurial > hg > silvet
diff src/EM.h @ 110:e282930cfca7
Add draft/intensive mode setting (determines whether to use shifts)
| author | Chris Cannam |
|---|---|
| date | Tue, 06 May 2014 18:55:11 +0100 |
| parents | 384338fa460d |
| children | 2169e7a448c5 |
line wrap: on
line diff
--- a/src/EM.h Tue May 06 18:28:34 2014 +0100 +++ b/src/EM.h Tue May 06 18:55:11 2014 +0100 @@ -21,7 +21,7 @@ class EM { public: - EM(); + EM(bool useShifts); ~EM(); void iterate(std::vector<double> column); @@ -40,6 +40,8 @@ typedef std::vector<double> V; typedef std::vector<std::vector<double> > Grid; + bool m_useShifts; + V m_pitches; Grid m_shifts; Grid m_sources;
