diff options
author | Jan Huwald <jh@sotun.de> | 2012-05-07 20:01:51 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2012-05-07 20:01:51 (GMT) |
commit | 420d2ef464d4a741028e132e662d5626806a41f5 (patch) | |
tree | 1aca6eb512e4ed0fb5f3c10c528cb998b6ffd695 /core/model.hpp |
Diffstat (limited to 'core/model.hpp')
-rw-r--r-- | core/model.hpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/core/model.hpp b/core/model.hpp new file mode 100644 index 0000000..c95bf46 --- /dev/null +++ b/core/model.hpp @@ -0,0 +1,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 + |