alpar@209: /* -*- mode: C++; indent-tabs-mode: nil; -*-
alpar@10:  *
alpar@209:  * This file is a part of LEMON, a generic C++ optimization library.
alpar@10:  *
alpar@440:  * Copyright (C) 2003-2009
alpar@10:  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@10:  * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@10:  *
alpar@10:  * Permission to use, modify and distribute this software is granted
alpar@10:  * provided that this copyright notice appears in all copies. For
alpar@10:  * precise terms see the accompanying LICENSE file.
alpar@10:  *
alpar@10:  * This software is provided "AS IS" with no warranty of any kind,
alpar@10:  * express or implied, and with no claim as to its suitability for any
alpar@10:  * purpose.
alpar@10:  *
alpar@10:  */
alpar@10: 
alpar@10: ///\file
alpar@10: ///\brief Instantiation of the Random class.
alpar@10: 
alpar@10: #include <lemon/random.h>
alpar@10: 
alpar@10: namespace lemon {
alpar@10:   /// \brief Global random number generator instance
alpar@10:   ///
kpeter@16:   /// A global Mersenne Twister random number generator instance.
alpar@10:   Random rnd;
alpar@10: }