Skip to content

Commit

Permalink
More double removals
Browse files Browse the repository at this point in the history
  • Loading branch information
henricasanova committed Oct 18, 2024
1 parent 841cfc5 commit 923a116
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/wrench/wrench-daemon/src/SimulationController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ namespace wrench {

std::string cs_name = data["service_name"];
unsigned long num_cores = data["num_cores"];
double ram_memory = data["ram_memory"];
sg_size_t ram_memory = data["ram_memory"];
std::string property_list_string = data["property_list"];
std::string message_payload_list_string = data["message_payload_list"];

Expand Down Expand Up @@ -984,7 +984,7 @@ namespace wrench {

std::string compute_action_name = data["name"];
double flops = data["flops"];
double ram = data["ram"];
sg_size_t ram = data["ram"];
unsigned long min_num_cores = data["min_num_cores"];
unsigned long max_num_cores = data["max_num_cores"];
std::pair<std::string, double> parallel_model = data["parallel_model"];
Expand Down Expand Up @@ -1160,7 +1160,7 @@ namespace wrench {
}

std::string file_read_action_name = data["name"];
double num_bytes_to_read = data["num_bytes_to_read"];
sg_size_t num_bytes_to_read = data["num_bytes_to_read"];

shared_ptr<FileReadAction> action;
if (num_bytes_to_read == -1) {
Expand Down

0 comments on commit 923a116

Please sign in to comment.