author | deba |
Thu, 06 Apr 2006 09:33:29 +0000 | |
changeset 2039 | dacc4ce9474d |
permissions | -rw-r--r-- |
deba@2035 | 1 |
/* -*- C++ -*- |
deba@2035 | 2 |
* |
deba@2035 | 3 |
* This file is a part of LEMON, a generic C++ optimization library |
deba@2035 | 4 |
* |
deba@2035 | 5 |
* Copyright (C) 2003-2006 |
deba@2035 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
deba@2035 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
deba@2035 | 8 |
* |
deba@2035 | 9 |
* Permission to use, modify and distribute this software is granted |
deba@2035 | 10 |
* provided that this copyright notice appears in all copies. For |
deba@2035 | 11 |
* precise terms see the accompanying LICENSE file. |
deba@2035 | 12 |
* |
deba@2035 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
deba@2035 | 14 |
* express or implied, and with no claim as to its suitability for any |
deba@2035 | 15 |
* purpose. |
deba@2035 | 16 |
* |
deba@2035 | 17 |
*/ |
deba@2035 | 18 |
|
deba@2035 | 19 |
#ifndef LEMON_BITS_MINGW32_RAND_H |
deba@2035 | 20 |
#define LEMON_BITS_MINGW32_RAND_H |
deba@2035 | 21 |
|
deba@2035 | 22 |
|
deba@2035 | 23 |
#ifdef WIN32 |
deba@2035 | 24 |
|
deba@2035 | 25 |
double drand48(void); |
deba@2035 | 26 |
double erand48(unsigned short xsubi[3]); |
deba@2035 | 27 |
long int lrand48(void); |
deba@2035 | 28 |
long int nrand48(unsigned short xsubi[3]); |
deba@2035 | 29 |
long int mrand48(void); |
deba@2035 | 30 |
long int jrand48(unsigned short xsubi[3]); |
deba@2035 | 31 |
void srand48(long int seedval); |
deba@2035 | 32 |
unsigned short *seed48(unsigned short seed16v[3]); |
deba@2035 | 33 |
void lcong48(unsigned short param[7]); |
deba@2035 | 34 |
|
deba@2035 | 35 |
#endif |
deba@2035 | 36 |
|
deba@2035 | 37 |
#endif |