Update of /cvsroot/boost/boost/libs/numeric/ublas/doc
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv708/libs/numeric/ublas/doc
Modified Files:
vector.htm matrix.htm
Log Message:
[uBLAS]
CHANGE zero/identity/scalar _ vector/matrix add ALLOC template parameter to
specify size/difference_type
Index: vector.htm
===================================================================
RCS file: /cvsroot/boost/boost/libs/numeric/ublas/doc/vector.htm,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- vector.htm 6 Oct 2005 19:58:37 -0000 1.20
+++ vector.htm 13 Dec 2006 15:34:05 -0000 1.21
@@ -350,7 +350,7 @@
<code>std::vector<T></code> .</p>
<h2><a name="unit_vector" id="unit_vector"></a>Unit Vector</h2>
<h4>Description</h4>
-<p>The templated class <code>unit_vector<T></code> represents
+<p>The templated class <code>unit_vector<T, ALLOC></code> represents
canonical unit vectors. For the <em>k</em>-th
<em>n</em>-dimensional canonical unit vector and <em>0 <= i <
n</em> holds <em>u</em><sup><em>k</em></sup><sub><em>i</em></sub>
@@ -385,6 +385,11 @@
<td>The type of object stored in the vector.</td>
<td><code>int</code></td>
</tr>
+<tr>
+<td><code>ALLOC</code></td>
+<td>An STL Allocator for size_type and difference_type.</td>
+<td>std::allocator</td>
+</tr>
</tbody>
</table>
<h4>Model of</h4>
@@ -479,7 +484,7 @@
</table>
<h2><a name="zero_vector" id="zero_vector"></a>Zero Vector</h2>
<h4>Description</h4>
-<p>The templated class <code>zero_vector<T></code> represents
+<p>The templated class <code>zero_vector<T, ALLOC></code> represents
zero vectors. For a <em>n</em>-dimensional zero vector and <em>0
<= i < n</em> holds <em>z</em><sub><em>i</em></sub> <em>=
0</em>.</p>
@@ -509,6 +514,11 @@
<td>The type of object stored in the vector.</td>
<td><code>int</code></td>
</tr>
+<tr>
+<td><code>ALLOC</code></td>
+<td>An STL Allocator for size_type and difference_type.</td>
+<td>std::allocator</td>
+</tr>
</tbody>
</table>
<h4>Model of</h4>
@@ -599,7 +609,7 @@
</table>
<h2><a name="scalar_vector" id="scalar_vector"></a>Scalar Vector</h2>
<h4>Description</h4>
-<p>The templated class <code>scalar_vector<T></code>
+<p>The templated class <code>scalar_vector<T, ALLOC></code>
represents scalar vectors. For a <em>n</em>-dimensional scalar
vector and <em>0 <= i < n</em> holds
<em>z</em><sub><em>i</em></sub> <em>= s</em>.</p>
@@ -629,6 +639,11 @@
<td>The type of object stored in the vector.</td>
<td><code>int</code></td>
</tr>
+<tr>
+<td><code>ALLOC</code></td>
+<td>An STL Allocator for size_type and difference_type.</td>
+<td>std::allocator</td>
+</tr>
</tbody>
</table>
<h4>Model of</h4>
Index: matrix.htm
===================================================================
RCS file: /cvsroot/boost/boost/libs/numeric/ublas/doc/matrix.htm,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- matrix.htm 18 Jul 2005 07:35:51 -0000 1.18
+++ matrix.htm 13 Dec 2006 15:34:05 -0000 1.19
@@ -304,7 +304,7 @@
<code>std::vector<T></code> .</p>
<h2><a name="identity_matrix" id="identity_matrix"></a>Identity Matrix</h2>
<h4>Description</h4>
-<p>The templated class <code>identity_matrix<T></code>
+<p>The templated class <code>identity_matrix<T, ALLOC></code>
represents identity matrices. For a <em>(m x n</em>)-dimensional
identity matrix and <em>0 <= i < m</em>, <em>0 <= j <
n</em> holds <em>id</em><sub><em>i, j</em></sub> <em>= 0</em>, if
@@ -336,6 +336,11 @@
<td>The type of object stored in the matrix.</td>
<td><code>int</code></td>
</tr>
+<tr>
+<td><code>ALLOC</code></td>
+<td>An STL Allocator for size_type and difference_type.</td>
+<td>std::allocator</td>
+</tr>
</tbody>
</table>
<h4>Model of</h4>
@@ -449,7 +454,7 @@
</table>
<h2><a name="zero_matrix" id="zero_matrix"></a>Zero Matrix</h2>
<h4>Description</h4>
-<p>The templated class <code>zero_matrix<T></code> represents
+<p>The templated class <code>zero_matrix<T, ALLOC></code> represents
zero matrices. For a <em>(m x n</em>)-dimensional zero matrix and
<em>0 <= i < m</em>, <em>0 <= j < n</em> holds
<em>z</em><sub><em>i, j</em></sub> <em>= 0</em>.</p>
@@ -479,6 +484,11 @@
<td>The type of object stored in the matrix.</td>
<td><code>int</code></td>
</tr>
+<tr>
+<td><code>ALLOC</code></td>
+<td>An STL Allocator for size_type and difference_type.</td>
+<td>std::allocator</td>
+</tr>
</tbody>
</table>
<h4>Model of</h4>
@@ -590,7 +600,7 @@
</table>
<h2><a name="scalar_matrix" id="scalar_matrix"></a>Scalar Matrix</h2>
<h4>Description</h4>
-<p>The templated class <code>scalar_matrix<T></code>
+<p>The templated class <code>scalar_matrix<T, ALLOC></code>
represents scalar matrices. For a <em>(m x n</em>)-dimensional
scalar matrix and <em>0 <= i < m</em>, <em>0 <= j <
n</em> holds <em>z</em><sub><em>i, j</em></sub> <em>= s</em>.</p>
@@ -620,6 +630,11 @@
<td>The type of object stored in the matrix.</td>
<td><code>int</code></td>
</tr>
+<tr>
+<td><code>ALLOC</code></td>
+<td>An STL Allocator for size_type and difference_type.</td>
+<td>std::allocator</td>
+</tr>
</tbody>
</table>
<h4>Model of</h4>
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs