Reinforcement Learning  1.1
err_constants.h File Reference

Definition of all API error return codes and descriptions. More...

#include "errors_data.h"

Go to the source code of this file.

Namespaces

 reinforcement_learning
 [Error Generator]
 

Macros

#define ERROR_CODE_DEFINITION(code, name, message)
 [Error Generator] More...
 

Variables

const int reinforcement_learning::error_code::success = 0
 
char const *const reinforcement_learning::error_code::unknown_s = "Unexpected error."
 

Detailed Description

Definition of all API error return codes and descriptions.

Author
Rajan Chari et al
Date
2018-07-18

Macro Definition Documentation

◆ ERROR_CODE_DEFINITION

#define ERROR_CODE_DEFINITION (   code,
  name,
  message 
)
Value:
{ \
namespace error_code \
{ \
const int name = code; \
char const* const name##_s = message; \
} \
}
[Error Generator]
Definition: live_model.h:25

[Error Generator]