lemon/utility.h
author hegyi
Thu, 23 Jun 2005 17:56:24 +0000
changeset 1509 f9113440b667
parent 1435 8e85e6bbefdf
child 1630 f67737f5727a
permissions -rw-r--r--
A bug, explored by Alpar is corrected, but with value-checking, and not with correct values. (There is some problem with map values of new items! Maybe refreshemnt is the responsible thing?)
klao@977
     1
/* -*- C++ -*-
ladanyi@1435
     2
 * lemon/utility.h - Part of LEMON, a generic C++ optimization library
klao@977
     3
 *
alpar@1164
     4
 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi
alpar@1359
     5
 * Kutatocsoport (Egervary Research Group on Combinatorial Optimization,
klao@977
     6
 * EGRES).
klao@977
     7
 *
klao@977
     8
 * Permission to use, modify and distribute this software is granted
klao@977
     9
 * provided that this copyright notice appears in all copies. For
klao@977
    10
 * precise terms see the accompanying LICENSE file.
klao@977
    11
 *
klao@977
    12
 * This software is provided "AS IS" with no warranty of any kind,
klao@977
    13
 * express or implied, and with no claim as to its suitability for any
klao@977
    14
 * purpose.
klao@977
    15
 *
klao@977
    16
 * This file contains a modified version of the enable_if library from BOOST.
klao@977
    17
 * See the appropriate copyright notice below.
klao@977
    18
 */
klao@977
    19
klao@977
    20
// Boost enable_if library
klao@977
    21
klao@977
    22
// Copyright 2003 © The Trustees of Indiana University.
klao@977
    23
klao@977
    24
// Use, modification, and distribution is subject to the Boost Software
klao@977
    25
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
klao@977
    26
// http://www.boost.org/LICENSE_1_0.txt)
klao@977
    27
klao@977
    28
//    Authors: Jaakko Järvi (jajarvi at osl.iu.edu)
klao@977
    29
//             Jeremiah Willcock (jewillco at osl.iu.edu)
klao@977
    30
//             Andrew Lumsdaine (lums at osl.iu.edu)
klao@977
    31
klao@977
    32
klao@977
    33
#ifndef LEMON_UTILITY_H
klao@977
    34
#define LEMON_UTILITY_H
klao@977
    35
alpar@1447
    36
///\file
alpar@1447
    37
///\brief Miscellaneous basic utilities
alpar@1447
    38
///
alpar@1447
    39
///\todo Please rethink the organisation of the basic files like this.
alpar@1447
    40
///E.g. this file might be merged with invalid.h.
alpar@1447
    41
alpar@1447
    42
klao@977
    43
namespace lemon
klao@977
    44
{
klao@977
    45
jacint@1270
    46
  /// Basic type for defining "tags". A "YES" condition for enable_if.
klao@977
    47
klao@977
    48
  /// \todo This should go to a separate "basic_types.h" (or something)
klao@977
    49
  /// file.
klao@977
    50
  struct True {
klao@977
    51
    static const bool value = true;
klao@977
    52
  };
klao@977
    53
jacint@1270
    54
  /// Basic type for defining "tags". A "NO" condition for enable_if.
klao@977
    55
  struct False {
klao@977
    56
    static const bool value = false;
klao@977
    57
  };
klao@977
    58
klao@977
    59
  template <typename T>
klao@977
    60
  struct Wrap {
klao@977
    61
    const T &value;
klao@977
    62
    Wrap(const T &t) : value(t) {}
klao@977
    63
  };
klao@977
    64
alpar@1256
    65
  /**************** dummy class to avoid ambiguity ****************/
klao@977
    66
alpar@1256
    67
  template<int T> struct dummy { dummy(int) {} };
klao@977
    68
klao@977
    69
  /**************** enable_if from BOOST ****************/
klao@977
    70
 
klao@977
    71
  template <bool B, class T = void>
klao@977
    72
  struct enable_if_c {
klao@977
    73
    typedef T type;
klao@977
    74
  };
klao@977
    75
klao@977
    76
  template <class T>
klao@977
    77
  struct enable_if_c<false, T> {};
klao@977
    78
klao@977
    79
  template <class Cond, class T = void> 
klao@977
    80
  struct enable_if : public enable_if_c<Cond::value, T> {};
klao@977
    81
klao@977
    82
  template <bool B, class T>
klao@977
    83
  struct lazy_enable_if_c {
klao@977
    84
    typedef typename T::type type;
klao@977
    85
  };
klao@977
    86
klao@977
    87
  template <class T>
klao@977
    88
  struct lazy_enable_if_c<false, T> {};
klao@977
    89
klao@977
    90
  template <class Cond, class T> 
klao@977
    91
  struct lazy_enable_if : public lazy_enable_if_c<Cond::value, T> {};
klao@977
    92
klao@977
    93
klao@977
    94
  template <bool B, class T = void>
klao@977
    95
  struct disable_if_c {
klao@977
    96
    typedef T type;
klao@977
    97
  };
klao@977
    98
klao@977
    99
  template <class T>
klao@977
   100
  struct disable_if_c<true, T> {};
klao@977
   101
klao@977
   102
  template <class Cond, class T = void> 
klao@977
   103
  struct disable_if : public disable_if_c<Cond::value, T> {};
klao@977
   104
klao@977
   105
  template <bool B, class T>
klao@977
   106
  struct lazy_disable_if_c {
klao@977
   107
    typedef typename T::type type;
klao@977
   108
  };
klao@977
   109
klao@977
   110
  template <class T>
klao@977
   111
  struct lazy_disable_if_c<true, T> {};
klao@977
   112
klao@977
   113
  template <class Cond, class T> 
klao@977
   114
  struct lazy_disable_if : public lazy_disable_if_c<Cond::value, T> {};
klao@977
   115
deba@1418
   116
  // smart referencing
deba@1418
   117
deba@1418
   118
  template <typename _Type, typename Enable = void>
deba@1418
   119
  struct SmartReference {
deba@1418
   120
    typedef _Type& Type;
deba@1418
   121
  };
deba@1418
   122
  
deba@1418
   123
  template <typename _Type>
deba@1418
   124
  struct SmartReference<
deba@1418
   125
    _Type, 
deba@1418
   126
    typename enable_if<typename _Type::NeedCopy, void>::type
deba@1418
   127
  > {
deba@1418
   128
    typedef _Type Type;
deba@1418
   129
  };
deba@1418
   130
deba@1418
   131
  template <typename _Type, typename Enable = void>
deba@1418
   132
  struct SmartConstReference {
deba@1418
   133
    typedef const _Type& Type;
deba@1418
   134
  };
deba@1418
   135
  
deba@1418
   136
  template <typename _Type>
deba@1418
   137
  struct SmartConstReference<
deba@1418
   138
    _Type, 
deba@1418
   139
    typename enable_if<typename _Type::NeedCopy, void>::type
deba@1418
   140
  > {
deba@1418
   141
    typedef const _Type Type;
deba@1418
   142
  };
deba@1418
   143
deba@1418
   144
  template <typename _Type, typename Enable = void>
deba@1418
   145
  struct SmartParameter {
deba@1418
   146
    typedef _Type& Type;
deba@1418
   147
  };
deba@1418
   148
  
deba@1418
   149
  template <typename _Type>
deba@1418
   150
  struct SmartParameter<
deba@1418
   151
    _Type, 
deba@1418
   152
    typename enable_if<typename _Type::NeedCopy, void>::type
deba@1418
   153
  > {
deba@1418
   154
    typedef const _Type& Type;
deba@1418
   155
  };
deba@1418
   156
klao@977
   157
} // namespace lemon
klao@977
   158
klao@977
   159
#endif