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
//disable the stl warning of debug information conflicting with names of longer than 255 char.
1
//disable the stl warning of debug information conflicting with names of longer than 255 char.
2
#pragma warning( disable :4786 )  
2
#pragma warning( disable :4786 )  
3
 
3
 
4
#include <iostream>
4
#include <iostream>
5
#include <vector>
5
#include <vector>
6
#include "CGLA/CGLA.h"
6
#include <GEL/CGLA/CGLA.h>
7
#include "LinAlg/Matrix.h"
7
#include <GEL/LinAlg/Matrix.h>
8
#include "LinAlg/Vector.h"
8
#include <GEL/LinAlg/Vector.h>
9
#include "LinAlg/LapackFunc.h"
9
#include <GEL/LinAlg/LapackFunc.h>
10
 
10
 
11
using namespace std;
11
using namespace std;
12
using namespace LinAlg;
12
using namespace LinAlg;
13
using namespace CGLA;
13
using namespace CGLA;
14
 
14