AlpsOs.h
Go to the documentation of this file.
1 /*===========================================================================*
2  * This file is part of the Abstract Library for Parallel Search (ALPS). *
3  * *
4  * ALPS is distributed under the Eclipse Public License as part of the *
5  * COIN-OR repository (http://www.coin-or.org). *
6  * *
7  * Authors: *
8  * *
9  * Yan Xu, Lehigh University *
10  * Ted Ralphs, Lehigh University *
11  * *
12  * Conceptual Design: *
13  * *
14  * Yan Xu, Lehigh University *
15  * Ted Ralphs, Lehigh University *
16  * Laszlo Ladanyi, IBM T.J. Watson Research Center *
17  * Matthew Saltzman, Clemson University *
18  * *
19  * *
20  * Copyright (C) 2001-2013, Lehigh University, Yan Xu, and Ted Ralphs. *
21  *===========================================================================*/
22 
23 #ifndef AlpsOs_h
24 #define AlpsOs_h
25 
26 // AlpsOs.h is modified from BCP_os.hpp
27 // This file is fully docified.
28 // There's nothing to docify...
29 
30 #if (defined(__GNUC__) && defined(__linux__))
31 # include "AlpsLinux.h"
32 #endif
33 
34 #if defined(__CYGWIN__) && defined(__GNUC__)
35 # include "AlpsCygwin.h"
36 #endif
37 
38 #if defined(_AIX43)
39 # include "AlpsAix43.h"
40 #endif
41 
42 #if defined(__GNUC__) && defined(__sparc) && defined(__sun)
43 # include "AlpsSunos.h"
44 #endif
45 
46 #if defined(__MACH__) && defined(__GNUC__)
47 # include "AlpsMACH.h"
48 #endif
49 
50 #endif