MultiAgentDecisionProcess  Release 0.2.1
VectorSet.h
Go to the documentation of this file.
1 
28 /* Only include this header file once. */
29 #ifndef _VECTORSET_H_
30 #define _VECTORSET_H_ 1
31 
32 /* the include directives */
33 #include <iostream>
34 #include "Globals.h"
35 
36 #include <boost/numeric/ublas/matrix_sparse.hpp>
37 #include <boost/numeric/ublas/matrix.hpp>
38 
39 
40 
42 typedef boost::numeric::ublas::matrix<double> VectorSet;
43 
44 typedef VectorSet::const_iterator1 VScit1;
45 typedef VectorSet::iterator1 VSit1;
46 typedef VectorSet::const_iterator2 VScit2;
47 typedef VectorSet::iterator2 VSit2;
48 
49 #endif /* !_VECTORSET_H_ */
50 
51 // Local Variables: ***
52 // mode:c++ ***
53 // End: ***