Changeset 734 for trunk/yat/utility/utility.h
- Timestamp:
- Jan 6, 2007, 6:04:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/utility.h
r687 r734 7 7 Copyright (C) 2005 Jari Häkkinen, Peter Johansson, Markus Ringnér 8 8 Copyright (C) 2006 Jari Häkkinen 9 Copyright (C) 2007 Peter Johansson 9 10 10 11 This file is part of the yat library, http://lev.thep.lu.se/trac/yat … … 32 33 /// 33 34 35 #include "vector.h" 36 34 37 #include <string> 35 38 #include <utility> … … 40 43 namespace utility { 41 44 42 class vector;45 class matrix; 43 46 44 47 /// … … 82 85 void shuffle(vector& invec); 83 86 87 88 /** 89 @brief matrix vector multiplication 90 */ 91 vector operator*(const matrix&, const vector&); 92 93 94 /** 95 @brief matrix vector multiplication 96 */ 97 vector operator*(const vector&, const matrix&); 98 84 99 }}} // of namespace utility, yat, and theplu 85 100
Note: See TracChangeset
for help on using the changeset viewer.