Joel Grunbaum
2022-01-19 0bef191acd5a77544852e6a3daae2df05bd34a31
commit | author | age
e8c910 1 #include "bom.hpp"
16b655 2 #include "book.hpp"
JG 3 #include "json.hpp"
4 #include "protocol.hpp"
5 #include <chrono>
e8c910 6 #include <iostream>
4fdb65 7 #include <unistd.h>
JG 8 #include <unordered_map>
16b655 9
f99dcd 10 constexpr int trials = 1000000;
JG 11
16b655 12 int main(void)
JG 13 {
0bef19 14     std::chrono::nanoseconds time(0);
JG 15     for (int i = 0; i < trials; i++) {
16         auto s = std::chrono::high_resolution_clock::now();
17         book::Book b = book::testBook(100, false);
18         auto e = std::chrono::high_resolution_clock::now();
19         time += e - s;
20     }
21     std::cout << time.count() / trials << std::endl;
f99dcd 22     // auto bs = protocol::recoverBook();
e8c910 23     //     protocol::catchUp(bs);
0bef19 24     // std::cout << bs.size() << std::endl;
JG 25     // for (auto i : bs) {
26     // std::cout << i.first << std::endl;
27     // i.second.printBook();
28     // }
f99dcd 29     // bom::initialise();
JG 30     // bom::updateBom(bs);
31     // bom::destroy();
32     // protocol::catchUp(bs);
33     // std::cout << bs.size() << std::endl;
34     // for (auto& i : bs) {
0bef19 35     // std::cout << i.first << ", " << i.second.expiry.count() << ", " <<
JG 36     // i.second.bomPrice << std::endl; i.second.printBook();
f99dcd 37     // }
16b655 38 }