Subversion Repositories gelsvn

Rev

Rev 671 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 671 Rev 680
Line 1... Line 1...
1
#include <iostream>
1
#include <iostream>
2
#include <algorithm>
2
#include <algorithm>
3
 
3
 
4
#include "CGLA/Mat4x4d.h"
4
#include <GEL/CGLA/Mat4x4d.h>
5
#include "CGLA/Mat4x4f.h"
5
#include <GEL/CGLA/Mat4x4f.h>
6
#include "CGLA/Mat2x2f.h"
6
#include <GEL/CGLA/Mat2x2f.h>
7
#include "CGLA/Mat3x3f.h"
7
#include <GEL/CGLA/Mat3x3f.h>
8
#include "CGLA/Mat2x3f.h"
8
#include <GEL/CGLA/Mat2x3f.h>
9
#include "CGLA/eigensolution.h"
9
#include <GEL/CGLA/eigensolution.h>
10
 
10
 
11
#include "CGLA/Vec2f.h"
11
#include <GEL/CGLA/Vec2f.h>
12
#include "CGLA/Vec2i.h"
12
#include <GEL/CGLA/Vec2i.h>
13
#include "CGLA/Vec3i.h"
13
#include <GEL/CGLA/Vec3i.h>
14
#include "CGLA/Vec3f.h"
14
#include <GEL/CGLA/Vec3f.h>
15
#include "CGLA/Vec3Hf.h"
15
#include <GEL/CGLA/Vec3Hf.h>
16
 
16
 
17
#include "LinAlg/LapackFunc.h"
17
#include <GEL/LinAlg/LapackFunc.h>
18
 
18
 
19
using namespace std;
19
using namespace std;
20
using namespace CGLA;
20
using namespace CGLA;
21
using namespace LinAlg;
21
using namespace LinAlg;
22
 
22