Proyecto Final - Turinmachin
Recreación del minijuego de matemáticas de Brain-Age usando redes neuronales
Loading...
Searching...
No Matches
constants.h
Go to the documentation of this file.
1#ifndef INCLUDE_COMMON_CONSTANTS_H
2#define INCLUDE_COMMON_CONSTANTS_H
3
4#include <cstddef>
5
6namespace common {
7
8 constexpr std::size_t IMAGE_WIDTH = 8;
9 constexpr std::size_t IMAGE_HEIGHT = 8;
10 constexpr std::size_t IMAGE_SIZE = IMAGE_WIDTH * IMAGE_HEIGHT;
11 constexpr double IMAGE_DIMENSION = 16.0;
12
13} // namespace common
14
15#endif
Definition agent.h:8
constexpr std::size_t IMAGE_SIZE
Definition constants.h:10
constexpr std::size_t IMAGE_WIDTH
Definition constants.h:8
constexpr double IMAGE_DIMENSION
Definition constants.h:11
constexpr std::size_t IMAGE_HEIGHT
Definition constants.h:9