Skip to content

Reward and difficulty balancing algorithm development

Notifications You must be signed in to change notification settings

Enecuum/reward_algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reward Algorithm

Reward and difficulty balancing algorithm development

Fetching the source

git clone [email protected]:Enecuum/reward_algorithm.git

Building

The included build system uses several Linux tools to automate things (find, sed, etc), in Windows this might work, might not.

Building in the source directory (cmake .) is disabled (take a look in a build directory to see the world of pain an in-source build will bring you).

The recommended way to build is to create a build subdirectory and build from there:

cd reward_algorithm/
mkdir build
cd build
cmake ..
# to explicitly request a debug build:
cmake -DCMAKE_BUILD_TYPE=Debug ..
# idem for release builds:
cmake -DCMAKE_BUILD_TYPE=Release ..

# Compile
make

# Compile and run all tests detected
make check

# Run a test separately
./test_NAME

About

Reward and difficulty balancing algorithm development

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published