17 lines
301 B
C
17 lines
301 B
C
/*
|
|
* @file algo.h
|
|
*
|
|
* @date Mar 2, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
|
*/
|
|
|
|
#ifndef ALGO_H_
|
|
#define ALGO_H_
|
|
|
|
#include "global.h"
|
|
#include "engine_configuration.h"
|
|
void initDataStructures(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
|
void initAlgo(Logging *sharedLogger);
|
|
|
|
#endif /* ALGO_H_ */
|