-
Notifications
You must be signed in to change notification settings - Fork 1
/
user_settings.h
27 lines (19 loc) · 1.14 KB
/
user_settings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* Copyright (C) 2009-2010 The Trustees of Indiana University. */
/* */
/* Use, modification and distribution is subject to the Boost Software */
/* License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at */
/* http://www.boost.org/LICENSE_1_0.txt) */
/* */
/* Authors: Jeremiah Willcock */
/* Andrew Lumsdaine */
#ifndef USER_SETTINGS_H
#define USER_SETTINGS_H
/* Settings for user modification ----------------------------------- */
/* #define GENERATOR_USE_PACKED_EDGE_TYPE -- 48 bits per edge */
#undef GENERATOR_USE_PACKED_EDGE_TYPE /* 64 bits per edge */
#define FAST_64BIT_ARITHMETIC /* Use 64-bit arithmetic when possible. */
/* #undef FAST_64BIT_ARITHMETIC -- Assume 64-bit arithmetic is slower than 32-bit. */
//TODO elsewhere?
//#define _GRAPPA 1
/* End of user settings ----------------------------------- */
#endif /* USER_SETTINGS_H */