CXXR (C++ R) API
config.hpp
Go to the documentation of this file.
1 /*CXXR $Id$
2  *CXXR
3  *CXXR This file is part of CXXR, a project to refactor the R interpreter
4  *CXXR into C++. It may consist in whole or in part of program code and
5  *CXXR documentation taken from the R project itself, incorporated into
6  *CXXR CXXR (and possibly MODIFIED) under the terms of the GNU General Public
7  *CXXR Licence.
8  *CXXR
9  *CXXR CXXR is Copyright (C) 2008-9 Andrew R. Runnalls, subject to such other
10  *CXXR copyrights and copyright restrictions as may be stated below.
11  *CXXR
12  *CXXR CXXR is not part of the R project, and bugs and other issues should
13  *CXXR not be reported via r-bugs or other R project channels; instead refer
14  *CXXR to the CXXR website.
15  *CXXR */
16 
17 /*
18  * R : A Computer Language for Statistical Data Analysis
19  * Copyright (C) 1995, 1996 Robert Gentleman and Ross Ihaka
20  * Copyright (C) 1999-2006 The R Development Core Team.
21  *
22  * This program is free software; you can redistribute it and/or modify
23  * it under the terms of the GNU General Public License as published by
24  * the Free Software Foundation; either version 2.1 of the License, or
25  * (at your option) any later version.
26  *
27  * This program is distributed in the hope that it will be useful,
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30  * GNU Lesser General Public License for more details.
31  *
32  * You should have received a copy of the GNU General Public License
33  * along with this program; if not, a copy is available at
34  * http://www.r-project.org/Licenses/
35  */
36 
51 #ifndef CXXR_CONFIG_HPP
52 #define CXXR_CONFIG_HPP
53 
66 #ifdef DOXYGEN
67 #define AGGRESSIVE_GC
68 #endif
69 
70 #ifndef AGGRESSIVE_GC
71 #define AGGRESSIVE_GC
72 #endif
73 
91 #ifdef DOXYGEN
92 #define CELLFIFO
93 #endif
94 
107 #ifdef DOXYGEN
108 #define CHECK_EXPOSURE
109 #endif
110 
111 #ifndef CHECK_EXPOSURE
112 #define CHECK_EXPOSURE
113 #endif
114 
124 #ifdef DOXYGEN
125 #define FILL55
126 #endif
127 
128 #ifndef FILL55
129 #define FILL55
130 #endif
131 
142 #ifdef DOXYGEN
143 #define GCID
144 #endif
145 
146 #ifndef GCID
147 #define GCID
148 #endif
149 
160 #ifdef DOXYGEN
161 #define NDEBUG
162 #endif
163 
171 #ifdef DOXYGEN
172 #define PROVENANCE_TRACKING
173 #endif
174 
175 #ifndef PROVENANCE_TRACKING
176 #define PROVENANCE_TRACKING
177 #endif
178 
198 #ifdef DOXYGEN
199 #define RARE_GC
200 #endif
201 
214 #ifdef DOXYGEN
215 #define UNCHECKED_SEXP_DOWNCAST
216 #endif
217 
218 #endif // CXXR_CONFIG_HPP