alpar@10: /* -*- C++ -*- alpar@10: * alpar@10: * This file is a part of LEMON, a generic C++ optimization library alpar@10: * alpar@10: * Copyright (C) 2003-2007 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 alpar@10: alpar@10: namespace lemon { alpar@10: /// \brief Global random number generator instance alpar@10: /// alpar@10: /// A global mersenne twister random number generator instance alpar@10: Random rnd; alpar@10: }