This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Random Number Generation Library | |
* Aidan Dodds 2016 | |
* | |
* This library contains a bunch of random number routines with integer and | |
* float output and a handful of different weightings. These routines were | |
* written for use in the context of game development and image processing. | |
* These routines are in no way suitable for cryptographic purposes, or where | |
* statistical accuracy is required. Im a programmer, not a mathematician. | |
* | |
* I place this library in the public domain. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simple fixed size binary heap implementation, intended for A* applications. | |
// Aidan Dodds 15/2/2016. | |
// Do whatever you want with this... | |
#pragma once | |
#include <stdint.h> | |
#include <array> | |
#include <cassert> | |
// Fixed size binary heap implementation |
NewerOlder