00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef SELDON_FILE_SUBMATRIX_CXX
00021
00022
00023 #include "SubMatrix.hxx"
00024
00025
00026 namespace Seldon
00027 {
00028
00029
00031
00033
00034
00035
00036
00037
00038
00039
00041 template <class T, class Prop, class M, class Allocator>
00042 inline Matrix<T, Prop, SubStorage<M>, Allocator>
00043 ::Matrix(M& A, Vector<int>& row_list, Vector<int>& column_list):
00044 SubMatrix_Base<T, Prop, M, Allocator>(A, row_list, column_list)
00045 {
00046 }
00047
00048
00049
00050
00051
00052
00053
00055 template <class T, class Prop, class M, class Allocator>
00056 inline Matrix<T, Prop, SubStorage<M>, Allocator>::~Matrix()
00057 {
00058 }
00059
00060
00062
00064
00065
00066
00067
00068
00069
00070
00072 template <class M>
00073 inline SubMatrix<M>
00074 ::SubMatrix(M& A, Vector<int>& row_list, Vector<int>& column_list):
00075 Matrix<typename M::value_type, typename M::property,
00076 SubStorage<M>, typename M::allocator>(A, row_list, column_list)
00077 {
00078 }
00079
00080
00081 }
00082
00083
00084 #define SELDON_FILE_SUBMATRIX_CXX
00085 #endif