mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-16 15:32:15 -07:00
Turn Card, Deck_List, Protocol, RNG, Server, Settings and Utility into libraries and remove cockatrice_common.
Took 6 hours 3 minutes Took 31 seconds
This commit is contained in:
parent
3cff55b0bb
commit
1e4e5a4419
593 changed files with 1913 additions and 1601 deletions
30
libcockatrice_rng/libcockatrice/rng/rng_abstract.cpp
Normal file
30
libcockatrice_rng/libcockatrice/rng/rng_abstract.cpp
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#include "rng_abstract.h"
|
||||
|
||||
#include <QDebug>
|
||||
|
||||
QVector<int> RNG_Abstract::makeNumbersVector(int n, int min, int max)
|
||||
{
|
||||
const int bins = max - min + 1;
|
||||
QVector<int> result(bins);
|
||||
for (int i = 0; i < n; ++i) {
|
||||
int number = rand(min, max);
|
||||
if ((number < min) || (number > max))
|
||||
qDebug() << "rand(" << min << "," << max << ") returned " << number;
|
||||
else
|
||||
result[number - min]++;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
double RNG_Abstract::testRandom(const QVector<int> &numbers) const
|
||||
{
|
||||
int n = 0;
|
||||
for (int i = 0; i < numbers.size(); ++i)
|
||||
n += numbers[i];
|
||||
double expected = (double)n / (double)numbers.size();
|
||||
double chisq = 0;
|
||||
for (int i = 0; i < numbers.size(); ++i)
|
||||
chisq += ((double)numbers[i] - expected) * ((double)numbers[i] - expected) / expected;
|
||||
|
||||
return chisq;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue