diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2011-05-03 01:02:45 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2011-05-03 01:02:45 -0400 |
commit | 520e03c12ffb6da89a66ecf9b9e46eeb3a3c8087 (patch) | |
tree | d34ff0393cca43fa66a0606c2f4ffcf78903a5a6 /utils | |
parent | 9449e0e1ade2e706dfc6e7a71eceadb0d5ed700b (diff) |
weight setting bug
Diffstat (limited to 'utils')
-rw-r--r-- | utils/sparse_vector.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/sparse_vector.h b/utils/sparse_vector.h index 274220ef..e3721b50 100644 --- a/utils/sparse_vector.h +++ b/utils/sparse_vector.h @@ -54,16 +54,16 @@ SparseVector<T> operator*(const SparseVector<T>& a, const T& b) { return result *= b; } -template <class T> -SparseVector<T> operator/(const SparseVector<T>& a, const double& b) { +template <class T, typename S> +SparseVector<T> operator/(const SparseVector<T>& a, const S& b) { SparseVector<T> result = a; - return result *= b; + return result /= b; } template <class T> -SparseVector<T> operator/(const SparseVector<T>& a, const T& b) { +SparseVector<T> operator/(const SparseVector<T>& a, const double& b) { SparseVector<T> result = a; - return result *= b; + return result /= b; } #include "fdict.h" |