Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
javadsaberlatibari authored Apr 4, 2024
1 parent df432b8 commit 99a50ac
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions wellcoordination/benchmark/rubis.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,16 @@ class Rubis : public ReplicatedObject
g1.push_back(static_cast<int>(MethodType::STORE_BUY_NOW));
//g1.push_back(static_cast<int>(MethodType::REMOVE_MOVIE));
synch_groups.push_back(g1);


std::vector<int> g2;
g2.push_back(static_cast<int>(MethodType::REGISTER_USER));
//g2.push_back(static_cast<int>(MethodType::REMOVE_CUSTOMER));
g3.push_back(static_cast<int>(MethodType::PLACE_BID));
g3.push_back(static_cast<int>(MethodType::CLOSE_AUCTION));
synch_groups.push_back(g2);

std::vector<int> g3;
g3.push_back(static_cast<int>(MethodType::PLACE_BID));
g3.push_back(static_cast<int>(MethodType::CLOSE_AUCTION));
g2.push_back(static_cast<int>(MethodType::REGISTER_USER));
//g2.push_back(static_cast<int>(MethodType::REMOVE_CUSTOMER));
synch_groups.push_back(g3);

for (int i = 0; i < 100; i++) {
Expand Down

0 comments on commit 99a50ac

Please sign in to comment.