summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2011-05-03 17:30:30 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2011-05-03 17:30:30 -0400
commit01e219ec7d0bbd81471d7e6978397a2d53a71246 (patch)
tree22bdc2603e1a6b087bd71520b78cc6ac9a8c51d9 /utils
parent6d020e932fdd6ddc6cf5adbbfb8baa2f9a2a4615 (diff)
mira finished, clean up
Diffstat (limited to 'utils')
-rw-r--r--utils/sparse_vector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/sparse_vector.h b/utils/sparse_vector.h
index e3721b50..a55436fb 100644
--- a/utils/sparse_vector.h
+++ b/utils/sparse_vector.h
@@ -42,14 +42,14 @@ BOOST_CLASS_TRACKING(SparseVector<double>,track_never)
#include "fast_sparse_vector.h"
#define SparseVector FastSparseVector
-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;
}
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;
}