X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d918db3ca7152c00113f2e072deca4614f97bb58..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/src/mc/VisitedState.cpp diff --git a/src/mc/VisitedState.cpp b/src/mc/VisitedState.cpp index fa49142bf6..ad68b3acd8 100644 --- a/src/mc/VisitedState.cpp +++ b/src/mc/VisitedState.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2011-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2011-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -23,7 +23,7 @@ namespace mc { VisitedState::VisitedState(unsigned long state_number) : num(state_number) { this->heap_bytes_used = mcapi::get().get_remote_heap_bytes(); - this->actors_count = mcapi::get().mc_get_remote_simulation().actors().size(); + this->actors_count = mcapi::get().get_actors_size(); this->system_state = std::make_shared(state_number); } @@ -51,7 +51,7 @@ VisitedStates::addVisitedState(unsigned long state_number, simgrid::mc::State* g new_state->num, graph_state->num_); auto range = - boost::range::equal_range(states_, new_state.get(), simgrid::mc::DerefAndCompareByActorsCountAndUsedHeap()); + boost::range::equal_range(states_, new_state.get(), mcapi::get().compare_pair()); if (compare_snapshots) for (auto i = range.first; i != range.second; ++i) {