]> Dogcows Code - chaz/yoink/blob - src/cml/vector/fixed.h
now using cml for vectors and math stuff
[chaz/yoink] / src / cml / vector / fixed.h
1 /* -*- C++ -*- ------------------------------------------------------------
2
3 Copyright (c) 2007 Jesse Anders and Demian Nave http://cmldev.net/
4
5 The Configurable Math Library (CML) is distributed under the terms of the
6 Boost Software License, v1.0 (see cml/LICENSE for details).
7
8 *-----------------------------------------------------------------------*/
9 /** @file
10 * @brief Specialization for fixed-size, fixed-memory vectors.
11 */
12
13 #ifndef fixed_vector_h
14 #define fixed_vector_h
15
16 #include <cml/core/fixed_1D.h>
17 #include <cml/vector/vector_expr.h>
18 #include <cml/vector/class_ops.h>
19 #include <cml/vector/vector_unroller.h>
20 #include <cml/vector/external.h>
21 #include <cml/util.h>
22
23 namespace cml {
24
25 /** Fixed-size, fixed-memory vector. */
26 template<typename Element, int Size>
27 class vector< Element, fixed<Size> >
28 : public fixed_1D<Element,Size>
29 {
30 public:
31
32 /* Shorthand for the generator: */
33 typedef fixed<> storage_type;
34 typedef fixed<Size> generator_type;
35
36 /* Shorthand for the array type: */
37 typedef fixed_1D<Element,Size> array_type;
38
39 /* Shorthand for the type of this vector: */
40 typedef vector<Element,generator_type> vector_type;
41
42 /* For integration into the expression template code: */
43 typedef vector_type expr_type;
44
45 /* For integration into the expression template code: */
46 typedef vector_type temporary_type;
47 typedef vector< Element, fixed<Size-1> > subvector_type;
48
49 /* Standard: */
50 typedef typename array_type::value_type value_type;
51 typedef typename array_type::reference reference;
52 typedef typename array_type::const_reference const_reference;
53
54 /* For integration into the expression templates code: */
55 typedef vector_type& expr_reference;
56 typedef const vector_type& expr_const_reference;
57
58 /* For matching by storage type: */
59 typedef typename array_type::memory_tag memory_tag;
60
61 /* For matching by size type: */
62 typedef typename array_type::size_tag size_tag;
63
64 /* For matching by result-type: */
65 typedef cml::et::vector_result_tag result_tag;
66
67 /* For matching by assignability: */
68 typedef cml::et::assignable_tag assignable_tag;
69
70
71 public:
72
73 /** Return square of the length. */
74 value_type length_squared() const {
75 return cml::dot(*this,*this);
76 }
77
78 /** Return the length. */
79 value_type length() const {
80 return std::sqrt(length_squared());
81 }
82
83 /** Normalize the vector. */
84 vector_type& normalize() {
85 return (*this /= length());
86 }
87
88 /** Set this vector to [0]. */
89 vector_type& zero() {
90 typedef cml::et::OpAssign<Element,Element> OpT;
91 cml::et::UnrollAssignment<OpT>(*this,Element(0));
92 return *this;
93 }
94
95 /** Set this vector to a cardinal vector. */
96 vector_type& cardinal(size_t i) {
97 zero();
98 (*this)[i] = Element(1);
99 return *this;
100 }
101
102 /** Pairwise minimum of this vector with another. */
103 template<typename E, class AT>
104 void minimize(const vector<E,AT>& v) {
105 /* XXX This should probably use ScalarPromote: */
106 for (size_t i = 0; i < this->size(); ++i) {
107 (*this)[i] = std::min((*this)[i],v[i]);
108 }
109 }
110
111 /** Pairwise maximum of this vector with another. */
112 template<typename E, class AT>
113 void maximize(const vector<E,AT>& v) {
114 /* XXX This should probably use ScalarPromote: */
115 for (size_t i = 0; i < this->size(); ++i) {
116 (*this)[i] = std::max((*this)[i],v[i]);
117 }
118 }
119
120 /** Fill vector with random elements. */
121 void random(value_type min, value_type max) {
122 for (size_t i = 0; i < this->size(); ++i) {
123 (*this)[i] = cml::random_real(min,max);
124 }
125 }
126
127
128 public:
129
130 vector() : array_type() {}
131
132
133 public:
134
135 /* Define common class operators: */
136
137 CML_CONSTRUCT_VEC_2(/**/)
138 CML_CONSTRUCT_VEC_3(/**/)
139 CML_CONSTRUCT_VEC_4(/**/)
140
141 CML_CONSTRUCT_FROM_SUBVEC(/**/)
142
143 CML_VEC_COPY_FROM_FIXED_ARRAY(array_type::array_size,/**/)
144 CML_VEC_COPY_FROM_VECTYPE(: array_type())
145 CML_VEC_COPY_FROM_VEC
146 CML_VEC_COPY_FROM_VECXPR
147
148 CML_ASSIGN_VEC_2
149 CML_ASSIGN_VEC_3
150 CML_ASSIGN_VEC_4
151
152 CML_VEC_ASSIGN_FROM_VECTYPE
153
154 CML_VEC_ASSIGN_FROM_VEC(=, cml::et::OpAssign)
155 CML_VEC_ASSIGN_FROM_VEC(+=, cml::et::OpAddAssign)
156 CML_VEC_ASSIGN_FROM_VEC(-=, cml::et::OpSubAssign)
157
158 CML_VEC_ASSIGN_FROM_VECXPR(=, cml::et::OpAssign)
159 CML_VEC_ASSIGN_FROM_VECXPR(+=, cml::et::OpAddAssign)
160 CML_VEC_ASSIGN_FROM_VECXPR(-=, cml::et::OpSubAssign)
161
162 CML_VEC_ASSIGN_FROM_SCALAR(*=, cml::et::OpMulAssign)
163 CML_VEC_ASSIGN_FROM_SCALAR(/=, cml::et::OpDivAssign)
164 };
165
166 } // namespace cml
167
168 #endif
169
170 // -------------------------------------------------------------------------
171 // vim:ft=cpp
This page took 0.036758 seconds and 4 git commands to generate.