1 | 1 |
/* -*- C++ -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2008 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
// This file contains a modified version of the enable_if library from BOOST. |
20 | 20 |
// See the appropriate copyright notice below. |
21 | 21 |
|
22 | 22 |
// Boost enable_if library |
23 | 23 |
|
24 |
// Copyright 2003 |
|
24 |
// Copyright 2003 (c) The Trustees of Indiana University. |
|
25 | 25 |
|
26 | 26 |
// Use, modification, and distribution is subject to the Boost Software |
27 | 27 |
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
28 | 28 |
// http://www.boost.org/LICENSE_1_0.txt) |
29 | 29 |
|
30 |
// Authors: Jaakko |
|
30 |
// Authors: Jaakko Jarvi (jajarvi at osl.iu.edu) |
|
31 | 31 |
// Jeremiah Willcock (jewillco at osl.iu.edu) |
32 | 32 |
// Andrew Lumsdaine (lums at osl.iu.edu) |
33 | 33 |
|
34 | 34 |
|
35 | 35 |
#ifndef LEMON_BITS_UTILITY_H |
36 | 36 |
#define LEMON_BITS_UTILITY_H |
37 | 37 |
|
38 | 38 |
///\file |
39 | 39 |
///\brief Miscellaneous basic utilities |
40 | 40 |
/// |
41 | 41 |
///\todo Please rethink the organisation of the basic files like this. |
42 | 42 |
///E.g. this file might be merged with invalid.h. |
43 | 43 |
|
44 | 44 |
|
45 | 45 |
namespace lemon |
46 | 46 |
{ |
47 | 47 |
|
48 | 48 |
/// Basic type for defining "tags". A "YES" condition for \c enable_if. |
49 | 49 |
|
50 | 50 |
/// Basic type for defining "tags". A "YES" condition for \c enable_if. |
51 | 51 |
/// |
52 | 52 |
///\sa False |
53 | 53 |
/// |
54 | 54 |
/// \todo This should go to a separate "basic_types.h" (or something) |
0 comments (0 inline)