Skip to content
Snippets Groups Projects
settings.h 377 B
Newer Older
/**
 * DESCRIPTION OF THE FILE
 *
 * @author Michal Kravčenko
 * @date 24.7.18 -
 */

#ifndef INC_4NEURO_SETTINGS_H
#define INC_4NEURO_SETTINGS_H

/**
 * If defined, the NN feed-forward will print out whats happening
 */
//#define VERBOSE_NN_EVAL

#ifdef _WINDOWS
#define LIB4NEURO_API __declspec(dllexport)
#else
#define LIB4NEURO_API
#endif