First version with advanced algorithm

This commit is contained in:
2018-04-25 23:57:18 +03:00
parent 23f18e9e15
commit 6d07558df8
3 changed files with 233 additions and 99 deletions

11
al_utility.hpp Normal file
View File

@@ -0,0 +1,11 @@
#ifndef _AL_UTILITY_
#define _AL_UTILITY_
#include <iostream>
#include <iomanip>
#include <sstream>
#include <cmath>
bool print_progress(long current, long total, double print_every=0.1);
int get_math_coeff(int k);
#endif // _AL_UTILITY_