forked from github/server
b7552f0d06
- Faster get_pooled/use_pooled - faster peasants() - faster plagues() - faster horses()
73 lines
1.6 KiB
C
73 lines
1.6 KiB
C
/* vi: set ts=2:
|
|
*
|
|
*
|
|
* Eressea PB(E)M host Copyright (C) 1998-2003
|
|
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
|
* Katja Zedel (katze@felidae.kn-bremen.de)
|
|
* Henning Peters (faroul@beyond.kn-bremen.de)
|
|
* Enno Rehling (enno@eressea-pbem.de)
|
|
* Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
|
|
*
|
|
* based on:
|
|
*
|
|
* Atlantis v1.0 13 September 1993 Copyright 1993 by Russell Wallace
|
|
* Atlantis v1.7 Copyright 1996 by Alex Schröder
|
|
*
|
|
* This program may not be used, modified or distributed without
|
|
* prior permission by the authors of Eressea.
|
|
* This program may not be sold or used commercially without prior written
|
|
* permission from the authors.
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include "rand.h"
|
|
#include "rng.h"
|
|
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
#include <float.h>
|
|
#include <ctype.h>
|
|
|
|
#define M_PIl 3.1415926535897932384626433832795029L /* pi */
|
|
|
|
/* NormalRand aus python, random.py geklaut, dort ist Referenz auf
|
|
* den Algorithmus. mu = Mittelwert, sigma = Standardabweichung. */
|
|
double
|
|
normalvariate(double mu, double sigma)
|
|
{
|
|
static double NV_MAGICCONST = 1.7155277699214135;
|
|
double z;
|
|
for (;;) {
|
|
double u1 = rng_double();
|
|
double u2 = 1.0 - rng_double();
|
|
z = NV_MAGICCONST*(u1-0.5)/u2;
|
|
if (z*z/4.0 <= -log(u2)) {
|
|
break;
|
|
}
|
|
}
|
|
return mu+z*sigma;
|
|
}
|
|
|
|
int
|
|
ntimespprob(int n, double p, double mod)
|
|
{
|
|
int count = 0;
|
|
int i;
|
|
|
|
for(i=0; i<n && p>0; i++) {
|
|
if(rng_double() < p) {
|
|
count++;
|
|
p += mod;
|
|
}
|
|
}
|
|
return count;
|
|
}
|
|
|
|
boolean
|
|
chance(double x)
|
|
{
|
|
if (x>=1.0) return true;
|
|
return rng_double() < x;
|
|
}
|
|
|