#include "rng.h"
#include <argos3/core/utility/configuration/argos_exception.h>
#include <argos3/core/utility/logging/argos_log.h>
#include <cstring>
#include <limits>
#include <cmath>
Go to the source code of this file.
|
| argos |
| The namespace containing all the ARGoS related code.
|
|
◆ CHECK_CATEGORY
#define CHECK_CATEGORY |
( |
|
category | ) |
|
Value: std::map<std::string, CCategory*>::iterator itCategory = m_mapCategories.find(category); \
if(itCategory == m_mapCategories.end()) { \
THROW_ARGOSEXCEPTION("CRandom:: can't find category \"" << category << "\"."); \
}
Definition at line 32 of file rng.cpp.