blob: c95bf466d7ac35a9771e388069129c3eeae5883c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include <math.h>
#include <boost/mpl/bool.hpp>
#include <boost/mpl/list.hpp>
#include <boost/mpl/pair.hpp>
#include "continuous_property.hpp"
#include "continuous_property_impl.hpp"
#include "discrete_property.hpp"
#include "property_composition.hpp"
#include "rng.hpp"
#include "trainer.hpp"
#ifndef RASIMU_MODEL
#define RASIMU_MODEL
/// the actual model
#include "properties.hpp"
#include "trainer_impl.hpp"
#endif
|