Subversion Repositories gelsvn

Rev

Rev 45 | Rev 58 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 45 Rev 54
Line 1... Line 1...
1
#include "eigensolution.h"
1
#include "eigensolution.h"
-
 
2
 
2
#include "Mat2x2f.h"
3
#include "Mat2x2f.h"
3
#include "Mat3x3f.h"
4
#include "Mat3x3f.h"
4
#include "Mat4x4f.h"
5
#include "Mat4x4f.h"
-
 
6
#include "Mat2x2d.h"
-
 
7
#include "Mat3x3d.h"
-
 
8
#include "Mat4x4d.h"
5
 
9
 
6
#include <iostream>
10
#include <iostream>
7
 
11
 
8
using namespace std;
12
using namespace std;
9
 
13
 
Line 85... Line 89...
85
	
89
	
86
		template int power_eigensolution<Mat3x3f>(const Mat3x3f&,
90
		template int power_eigensolution<Mat3x3f>(const Mat3x3f&,
87
																							Mat3x3f&,Mat3x3f&,unsigned int);
91
																							Mat3x3f&,Mat3x3f&,unsigned int);
88
		template int power_eigensolution<Mat4x4f>(const Mat4x4f&,
92
		template int power_eigensolution<Mat4x4f>(const Mat4x4f&,
89
																							Mat4x4f&,Mat4x4f&,unsigned int);
93
																							Mat4x4f&,Mat4x4f&,unsigned int);
-
 
94
		template int power_eigensolution<Mat2x2d>(const Mat2x2d&,
-
 
95
																							Mat2x2d&,Mat2x2d&,unsigned int);
-
 
96
	
-
 
97
		template int power_eigensolution<Mat3x3d>(const Mat3x3d&,
-
 
98
																							Mat3x3d&,Mat3x3d&,unsigned int);
-
 
99
		template int power_eigensolution<Mat4x4d>(const Mat4x4d&,
-
 
100
																							Mat4x4d&,Mat4x4d&,unsigned int);
90
}
101
}
91
 
102