Joel Grunbaum
2022-01-19 9ae8b92ba549ab916c88e9004a95c1ed0cd16059
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
#include "bom.hpp"
#include "book.hpp"
#include "json.hpp"
#include "protocol.hpp"
#include <chrono>
#include <iostream>
#include <unistd.h>
#include <unordered_map>
 
constexpr int trials = 1000000;
 
int main(void)
{
    std::chrono::nanoseconds time(0);
    for (int i = 0; i < trials; i++)
    {
        auto s = std::chrono::high_resolution_clock::now();
        book::Book b = book::testBook(100, false);
        auto e = std::chrono::high_resolution_clock::now();
        time += e - s;
    }
    std::cout << time.count() / trials << std::endl;
    // auto bs = protocol::recoverBook();
    //     protocol::catchUp(bs);
        // std::cout << bs.size() << std::endl;
        // for (auto i : bs) {
            // std::cout << i.first << std::endl;
            // i.second.printBook();
        // }
    // bom::initialise();
    // bom::updateBom(bs);
    // bom::destroy();
    // protocol::catchUp(bs);
    // std::cout << bs.size() << std::endl;
    // for (auto& i : bs) {
        // std::cout << i.first << ", " << i.second.expiry.count() << ", " << i.second.bomPrice << std::endl;
        // i.second.printBook();
    // }
}