The system used to calculate the conversion score of each players in OFCT.
This project is known to compile on g++ 10.2.0 under Ubuntu 20.04.
- Make sure you have
gitinstalled.
sudo apt install git- Get the latest stable release of
Ceres, and follow the instructions below, which can also be found here.
sudo apt-get install cmake libgoogle-glog-dev libgflags-dev libatlas-base-dev libeigen3-dev libsuitesparse-dev- Untar the tar, and build
Ceres.
tar zxf ceres-solver-2.0.0.tar.gz
mkdir ceres-bin
cd ceres-bin
cmake ../ceres-solver-2.0.0
make -j3 # you can change the number depending on the number of cores you have.
make test
make install- Clone the repository and build the Team Qualifier Scoring System.
git clone https://github.com/OFCT-Devs/Team-Qualifier-Scoring-System.git
cd Team-Qualifier-Scoring-System
mkdir build
cd build
cmake ..
make
./ScoringSystem