Alps  2.0.2
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  * Aykut Bulut, Lehigh University *
11  * Ted Ralphs, Lehigh University *
12  * *
13  * Conceptual Design: *
14  * *
15  * Yan Xu, Lehigh University *
16  * Ted Ralphs, Lehigh University *
17  * Laszlo Ladanyi, IBM T.J. Watson Research Center *
18  * Matthew Saltzman, Clemson University *
19  * *
20  * *
21  * Copyright (C) 2001-2023, Lehigh University, Yan Xu, Aykut Bulut, and *
22  * Ted Ralphs. *
23  * All Rights Reserved. *
24  *===========================================================================*/
25 
26 
27 #ifndef AlpsOs_h_
28 #define AlpsOs_h_
29 
30 // AlpsOs.h is modified from BCP_os.hpp
31 // This file is fully docified.
32 // There's nothing to docify...
33 
34 #if (defined(__GNUC__) && defined(__linux__))
35 # include "AlpsLinux.h"
36 #endif
37 
38 #if defined(__CYGWIN__) && defined(__GNUC__)
39 # include "AlpsCygwin.h"
40 #endif
41 
42 #if defined(_AIX43)
43 # include "AlpsAix43.h"
44 #endif
45 
46 #if defined(__GNUC__) && defined(__sparc) && defined(__sun)
47 # include "AlpsSunos.h"
48 #endif
49 
50 #if defined(__MACH__) && defined(__GNUC__)
51 # include "AlpsMACH.h"
52 #endif
53 
54 #endif
AlpsAix43.h
AlpsLinux.h
AlpsCygwin.h
AlpsSunos.h
AlpsMACH.h