blob: 9c14384413c601df33b0da9d822252f648852c9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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;
}
|