Subversion Repositories gelsvn

Rev

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

Rev 379 Rev 595
Line -... Line 1...
-
 
1
/* ----------------------------------------------------------------------- *
-
 
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
-
 
3
 * Copyright (C) the authors and DTU Informatics
-
 
4
 * For license and list of authors, see ../../doc/intro.pdf
-
 
5
 * ----------------------------------------------------------------------- */
-
 
6
 
1
#if !defined(LAPACKFUNC_H_HAA_AGUST_2001)
7
#if !defined(LAPACKFUNC_H_HAA_AGUST_2001)
2
#define LAPACKFUNC_H_HAA_AGUST_2001
8
#define LAPACKFUNC_H_HAA_AGUST_2001
3
 
9
 
4
#if defined(_MSC_VER)
10
#if defined(_MSC_VER)
-
 
11
    #if defined(_DEBUG)
-
 
12
        #pragma message("Note: including lib: lapackd.lib and ignoring defaultlib : LIBC\n")
-
 
13
        #pragma comment(lib, "lapackd.lib")
-
 
14
    #else
5
#pragma message("Note: including lib: clapack.lib and ignoring defaultlib : LIBC\n")
15
        #pragma message("Note: including lib: lapack.lib and ignoring defaultlib : LIBC\n")
6
#pragma comment(lib, "clapack.lib")
16
        #pragma comment(lib, "lapack.lib") 
-
 
17
    #endif
7
#pragma comment(linker, "/NODEFAULTLIB:LIBC.LIB")
18
    #pragma comment(linker, "/NODEFAULTLIB:LIBC.LIB")
8
 
-
 
9
#endif
19
#endif
10
 
20
 
11
#include "Matrix.h"
21
#include "Matrix.h"
12
#include "Vector.h"
22
#include "Vector.h"
13
 
23