Skip to content
Snippets Groups Projects
Commit 942502df authored by Anthony GRAIGNIC's avatar Anthony GRAIGNIC
Browse files

Merge branch 'fixes_of_simulation_exec' into 'modify_docker_image'

Changes to how data is handled, threads sleeps, csv times assignments

See merge request !16
parents 326a159f a663a973
No related branches found
No related tags found
2 merge requests!16Changes to how data is handled, threads sleeps, csv times assignments,!15update dockerfile to remove optimisation
Pipeline #6590 passed
......@@ -270,14 +270,17 @@ async fn main() -> Result<(), anyhow::Error> {
.unwrap()
.as_secs();
let simulation_behavior = mobility_records[i].clone();
let relative_start_duration = mobility_records_times[i];
let relative_start_duration = if i == 0 {
Duration::from_secs(0)
}
else { mobility_records_times[i] - mobility_records_times[i - 1] };
let rpc_url = rpc_url.clone();
let chain_id = chain_id;
let mut time_since_beginning = now;
tokio::time::sleep(relative_start_duration).await;
handles.push(tokio::spawn({
async move {
tokio::time::sleep(relative_start_duration).await;
time_since_beginning += relative_start_duration.as_secs();
let provider = Provider::<Http>::try_from(rpc_url.clone()).unwrap();
......
......@@ -99,6 +99,8 @@ pub fn generate_behaviors_from_records(records: Vec<MobilityRecord>) -> Vec<Mobi
let earliest_datetime = find_earliest_mobility_record(&records);
// let dataset_id = thread_rng().gen::<u64>();
let mut start_times:Vec<i128> = records.iter().map(|r| r.created_at.sub(earliest_datetime).whole_milliseconds()).collect();
start_times.sort_unstable();
records
.iter()
......@@ -106,11 +108,11 @@ pub fn generate_behaviors_from_records(records: Vec<MobilityRecord>) -> Vec<Mobi
.map(|(i, r)| MobilityBehavior {
id: i as u64,
// dataset_id,
relative_start_time: r.created_at.sub(earliest_datetime).whole_milliseconds(),
relative_start_time: start_times[i],
quantity: quantify_mobility(r.service.clone()),
mobility_record: r.clone(),
})
.collect()
.collect::<Vec<MobilityBehavior>>()
}
/// Strech behavior start time for simulation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment