summaryrefslogtreecommitdiff
path: root/src/sparse_vector.h
blob: 6a8c9bf485e42121c8f426638a07d0b03518f95f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#ifndef _SPARSE_VECTOR_H_
#define _SPARSE_VECTOR_H_

// this is a modified version of code originally written
// by Phil Blunsom

#include <iostream>
#include <map>
#include <vector>
#include <valarray>

#include "fdict.h"

template <typename T>
class SparseVector {
public:
    SparseVector() {}

    const T operator[](int index) const {
      typename std::map<int, T>::const_iterator found = _values.find(index);
      if (found == _values.end())
        return T(0);
      else
        return found->second;
    }

    void set_value(int index, const T &value) {
        _values[index] = value;
    }

    void add_value(int index, const T &value) {
        _values[index] += value;
    }

    T value(int index) const {
        typename std::map<int, T>::const_iterator found = _values.find(index);
        if (found != _values.end())
            return found->second;
        else
            return T(0);
    }

    void store(std::valarray<T>* target) const {
      (*target) *= 0;
      for (typename std::map<int, T>::const_iterator 
              it = _values.begin(); it != _values.end(); ++it) {
        if (it->first >= target->size()) break;
        (*target)[it->first] = it->second;
      }
    }

    int max_index() const {
        if (_values.empty()) return 0;
        typename std::map<int, T>::const_iterator found =_values.end();
        --found;
        return found->first;
    }

    // dot product with a unit vector of the same length
    // as the sparse vector
    T dot() const {
        T sum = 0;
        for (typename std::map<int, T>::const_iterator 
                it = _values.begin(); it != _values.end(); ++it)
            sum += it->second;
        return sum;
    }

    template<typename S>
    S dot(const SparseVector<S> &vec) const {
        S sum = 0;
        for (typename std::map<int, T>::const_iterator 
                it = _values.begin(); it != _values.end(); ++it)
        {
            typename std::map<int, T>::const_iterator 
                found = vec._values.find(it->first);
            if (found != vec._values.end())
                sum += it->second * found->second;
        }
        return sum;
    }
    
    template<typename S>
    S dot(const std::vector<S> &vec) const {
        S sum = 0;
        for (typename std::map<int, T>::const_iterator 
                it = _values.begin(); it != _values.end(); ++it)
        {
            if (it->first < static_cast<int>(vec.size()))
                sum += it->second * vec[it->first];
        }
        return sum;
    }

    template<typename S>
    S dot(const S *vec) const {
        // this is not range checked!
        S sum = 0;
        for (typename std::map<int, T>::const_iterator 
                it = _values.begin(); it != _values.end(); ++it)
            sum += it->second * vec[it->first];
        std::cout << "dot(*vec) " << sum << std::endl;
        return sum;
    }

    T l1norm() const {
      T sum = 0;
      for (typename std::map<int, T>::const_iterator 
              it = _values.begin(); it != _values.end(); ++it)
        sum += fabs(it->second);
      return sum;
    }
    
    T l2norm() const {
      T sum = 0;
      for (typename std::map<int, T>::const_iterator 
              it = _values.begin(); it != _values.end(); ++it)
        sum += it->second * it->second;
      return sqrt(sum);
    }
    
    SparseVector<T> &operator+=(const SparseVector<T> &other) {
        for (typename std::map<int, T>::const_iterator 
                it = other._values.begin(); it != other._values.end(); ++it)
        {
            T v = (_values[it->first] += it->second);
            if (v == 0)
                _values.erase(it->first);
        }
        return *this;
    }

    SparseVector<T> &operator-=(const SparseVector<T> &other) {
        for (typename std::map<int, T>::const_iterator 
                it = other._values.begin(); it != other._values.end(); ++it)
        {
            T v = (_values[it->first] -= it->second);
            if (v == 0)
                _values.erase(it->first);
        }
        return *this;
    }

    SparseVector<T> &operator-=(const double &x) {
        for (typename std::map<int, T>::iterator 
                it = _values.begin(); it != _values.end(); ++it)
            it->second -= x;
        return *this;
    }

    SparseVector<T> &operator+=(const double &x) {
        for (typename std::map<int, T>::iterator 
                it = _values.begin(); it != _values.end(); ++it)
            it->second += x;
        return *this;
    }

    SparseVector<T> &operator/=(const double &x) {
        for (typename std::map<int, T>::iterator 
                it = _values.begin(); it != _values.end(); ++it)
            it->second /= x;
        return *this;
    }

    SparseVector<T> &operator*=(const T& x) {
        for (typename std::map<int, T>::iterator 
                it = _values.begin(); it != _values.end(); ++it)
            it->second *= x;
        return *this;
    }

    SparseVector<T> operator+(const double &x) const {
        SparseVector<T> result = *this;
        return result += x;
    }

    SparseVector<T> operator-(const double &x) const {
        SparseVector<T> result = *this;
        return result -= x;
    }

    SparseVector<T> operator/(const double &x) const {
        SparseVector<T> result = *this;
        return result /= x;
    }

    std::ostream &operator<<(std::ostream &out) const {
        for (typename std::map<int, T>::const_iterator 
                it = _values.begin(); it != _values.end(); ++it)
            out << (it == _values.begin() ? "" : ";")
	        << FD::Convert(it->first) << '=' << it->second;
        return out;
    }

    bool operator<(const SparseVector<T> &other) const {
        typename std::map<int, T>::const_iterator it = _values.begin();
        typename std::map<int, T>::const_iterator other_it = other._values.begin();

        for (; it != _values.end() && other_it != other._values.end(); ++it, ++other_it)
        {
            if (it->first < other_it->first) return true;
            if (it->first > other_it->first) return false;
            if (it->second < other_it->second) return true;
            if (it->second > other_it->second) return false;
        }
        return _values.size() < other._values.size();
    }

    int num_active() const { return _values.size(); }
    bool empty() const { return _values.empty(); }

    typedef typename std::map<int, T>::const_iterator const_iterator;
    const_iterator begin() const { return _values.begin(); }
    const_iterator end() const { return _values.end(); }

    void clear() {
        _values.clear();
    }

    void swap(SparseVector<T>& other) {
      _values.swap(other._values);
    }

private:
    std::map<int, T> _values;
};

template <typename T>
SparseVector<T> operator+(const SparseVector<T>& a, const SparseVector<T>& b) {
  SparseVector<T> result = a;
  return result += b;
}

template <typename T>
SparseVector<T> operator*(const SparseVector<T>& a, const double& b) {
  SparseVector<T> result = a;
  return result *= b;
}

template <typename T>
SparseVector<T> operator*(const SparseVector<T>& a, const T& b) {
  SparseVector<T> result = a;
  return result *= b;
}

template <typename T>
SparseVector<T> operator*(const double& a, const SparseVector<T>& b) {
  SparseVector<T> result = b;
  return result *= a;
}

template <typename T>
std::ostream &operator<<(std::ostream &out, const SparseVector<T> &vec)
{
    return vec.operator<<(out);
}

namespace B64 {
  void Encode(double objective, const SparseVector<double>& v, std::ostream* out);
  // returns false if failed to decode
  bool Decode(double* objective, SparseVector<double>* v, const char* data, size_t size);
}

#endif