-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperator.cpp
95 lines (75 loc) · 1.69 KB
/
operator.cpp
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
/* @file */
#include "operator.hpp"
namespace linalgcpp
{
Operator::Operator()
: Operator(0)
{
}
Operator::Operator(int size)
: Operator(size, size)
{
}
Operator::Operator(int rows, int cols)
: rows_(rows), cols_(cols)
{
assert(rows_ >= 0);
assert(cols_ >= 0);
}
Operator::Operator(const Operator& other) noexcept
: rows_(other.rows_), cols_(other.cols_)
{
assert(rows_ >= 0);
assert(cols_ >= 0);
}
Operator::Operator(Operator&& other) noexcept
: rows_(other.rows_), cols_(other.cols_)
{
assert(rows_ >= 0);
assert(cols_ >= 0);
}
Operator& Operator::operator=(Operator&& other) noexcept
{
swap(*this, other);
return *this;
}
int Operator::Rows() const
{
return rows_;
}
int Operator::Cols() const
{
return cols_;
}
void swap(Operator& lhs, Operator& rhs) noexcept
{
std::swap(lhs.rows_, rhs.rows_);
std::swap(lhs.cols_, rhs.cols_);
}
void Operator::Mult(const VectorView<double>& input, Vector<double>& output) const
{
output.SetSize(Rows());
Mult(input, static_cast<VectorView<double>&>(output));
}
Vector<double> Operator::Mult(const VectorView<double>& input) const
{
Vector<double> output(Rows());
Mult(input, output);
return output;
}
void Operator::MultAT(const VectorView<double>& input, Vector<double>& output) const
{
output.SetSize(Cols());
MultAT(input, static_cast<VectorView<double>&>(output));
}
Vector<double> Operator::MultAT(const VectorView<double>& input) const
{
Vector<double> output(Cols());
MultAT(input, output);
return output;
}
double Operator::InnerProduct(const VectorView<double>& x, const VectorView<double>& y) const
{
return y.Mult(Mult(x));
}
} // namespace linalgcpp