-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cpp
48 lines (40 loc) · 1.21 KB
/
main.cpp
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
46
47
48
#include <iostream>
#include <fstream>
#include <vector>
#include <map>
#include <string>
#include <sstream>
#include <algorithm>
#include "AdDemand.h"
#include "AdSupply.h"
#include "Shale.h"
int main() {
AdSupply supply;
// supply.loadInventory("./supply_enough.txt");
supply.loadInventory("./supply.txt");
AdDemand demand;
std::unordered_map<std::string, std::vector<std::string>> satisfyDemandList;
// demand.loadDemand("./demand_enough.txt", satisfyDemandList);
demand.loadDemand("./demand.txt", satisfyDemandList);
supply.setSatisfyDemandList(satisfyDemandList);
ShaleOffline shaleOffline(supply, demand);
shaleOffline.stageOne(5);
shaleOffline.stageTwo();
// fake the online logic
std::unordered_map<std::string, double> alphaJ = shaleOffline.getAlphaJ();
std::unordered_map<std::string, double> sigmaJ = shaleOffline.getSigmaJ();
ShaleOnline shaleOnline(supply, demand, alphaJ, sigmaJ);
for (const auto& i : supply.getSupplyKeys()) {
int inventory = supply.getSupply(i);
while (inventory > 0) {
shaleOnline.allocation(i);
--inventory;
}
}
// print related information
shaleOffline.print();
demand.print();
supply.print();
shaleOnline.print();
return 0;
}