Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.11 KB

File metadata and controls

38 lines (33 loc) · 1.11 KB

Team-Qualifier-Scoring-System

The system used to calculate the conversion score of each players in OFCT.

Prerequisites

This project is known to compile on g++ 10.2.0 under Ubuntu 20.04.

Get, Install, Compile, Build and Run

  1. Make sure you have git installed.
sudo apt install git
  1. 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
  1. 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
  1. 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