blob: 67df8c576a6fe8065b2fd920603ad28a3fda09ae (
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
|
#define BOOST_TEST_MODULE WeightsTest
#include <boost/test/unit_test.hpp>
#include <boost/test/floating_point_comparison.hpp>
#include "sparse_vector.h"
using namespace std;
BOOST_AUTO_TEST_CASE(Dot) {
SparseVector<double> x;
SparseVector<double> y;
x.set_value(1,0.8);
y.set_value(1,5);
x.set_value(2,-2);
y.set_value(2,1);
x.set_value(3,80);
BOOST_CHECK_CLOSE(x.dot(y), 2.0, 1e-9);
}
BOOST_AUTO_TEST_CASE(Equality) {
SparseVector<double> x;
SparseVector<double> y;
x.set_value(1,-1);
y.set_value(1,-1);
BOOST_CHECK(x == y);
}
BOOST_AUTO_TEST_CASE(Division) {
SparseVector<double> x;
SparseVector<double> y;
x.set_value(1,1);
y.set_value(1,-1);
BOOST_CHECK(!(x == y));
x /= -1;
BOOST_CHECK(x == y);
}
|