diff options
Diffstat (limited to 'core/test_.cpp')
-rw-r--r-- | core/test_.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/core/test_.cpp b/core/test_.cpp new file mode 100644 index 0000000..9c14384 --- /dev/null +++ b/core/test_.cpp @@ -0,0 +1,45 @@ +#include <set> +#include <boost/static_assert.hpp> +#include <boost/mpl/and.hpp> +#include <boost/mpl/assert.hpp> +#include <boost/mpl/at.hpp> +#include <boost/mpl/empty.hpp> +#include <boost/mpl/erase_key.hpp> +#include <boost/mpl/front.hpp> +#include <boost/mpl/if.hpp> +#include <boost/mpl/map.hpp> +#include <boost/mpl/pair.hpp> +#include <boost/mpl/transform.hpp> +#include <boost/mpl/list.hpp> +#include <boost/tuple/tuple.hpp> +#include <boost/type_traits/is_same.hpp> +#include <boost/random.hpp> +#include <boost/random/exponential_distribution.hpp> +#include <boost/random/variate_generator.hpp> +#include <boost/utility.hpp> +#include <iostream> +#include <assert.h> +#include <string> + + + +// #include "type_set.hpp" +// #include "simlimits.hpp" +// #include "time.hpp" +// #include "pointers.hpp" +// #include "mempool.hpp" +// #include "scalar.hpp" +// #include "multi_queue.hpp" +// #include "filter.hpp" + + +using namespace boost::mpl; +using namespace boost; +using namespace std; + + +int main() { + bool b(1); + cout << b << endl; + return 0; +} |