Subversion Repositories gelsvn

Rev

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

Rev 680 Rev 685
Line 11... Line 11...
11
//disable the stl warning of debug information conflicting with names of longer than 255 char.
11
//disable the stl warning of debug information conflicting with names of longer than 255 char.
12
#pragma warning( disable :4786 )  
12
#pragma warning( disable :4786 )  
13
 
13
 
14
#include <iostream>
14
#include <iostream>
15
#include <vector>
15
#include <vector>
16
#include <GEL/LinAlg/Matrix.h>
16
#include <LinAlg/Matrix.h>
17
#include <GEL/LinAlg/Vector.h>
17
#include <LinAlg/Vector.h>
18
#include <GEL/LinAlg/LapackFunc.h>
18
#include <LinAlg/LapackFunc.h>
19
 
19
 
20
using namespace std;
20
using namespace std;
21
using namespace LinAlg;
21
using namespace LinAlg;
22
using namespace CGLA;
22
using namespace CGLA;
23
 
23