blob: c7ac9e54f6306017b20b556118b2fcbe287a310a (
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
|
#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(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);
}
|