lemon/random.cc
author convert-repo
Thu, 04 Mar 2010 19:34:55 +0000
changeset 2659 611ced85018b
parent 2391 14a343be7a5a
permissions -rw-r--r--
update tags
alpar@2249
     1
/* -*- C++ -*-
alpar@2249
     2
 *
alpar@2249
     3
 * This file is a part of LEMON, a generic C++ optimization library
alpar@2249
     4
 *
alpar@2553
     5
 * Copyright (C) 2003-2008
alpar@2249
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@2249
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@2249
     8
 *
alpar@2249
     9
 * Permission to use, modify and distribute this software is granted
alpar@2249
    10
 * provided that this copyright notice appears in all copies. For
alpar@2249
    11
 * precise terms see the accompanying LICENSE file.
alpar@2249
    12
 *
alpar@2249
    13
 * This software is provided "AS IS" with no warranty of any kind,
alpar@2249
    14
 * express or implied, and with no claim as to its suitability for any
alpar@2249
    15
 * purpose.
alpar@2249
    16
 *
alpar@2249
    17
 */
alpar@2249
    18
alpar@2249
    19
///\file
alpar@2249
    20
///\brief Instantiation of the Random class.
alpar@2249
    21
deba@2229
    22
#include <lemon/random.h>
deba@2229
    23
deba@2229
    24
namespace lemon {
deba@2246
    25
  /// \brief Global random number generator instance
deba@2246
    26
  ///
deba@2246
    27
  /// A global mersenne twister random number generator instance
deba@2229
    28
  Random rnd;
deba@2229
    29
}