Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Use std::equal_range in get_search_range()
[simgrid.git] / src / mc / mc_request.h
index 1f9fc0d..2fa0896 100644 (file)
@@ -11,8 +11,6 @@
 
 #include "src/simix/smx_private.h"
 
-SG_BEGIN_DECL()
-
 namespace simgrid {
 namespace mc {
 
@@ -26,12 +24,6 @@ XBT_PRIVATE bool request_depend(smx_simcall_t req1, smx_simcall_t req2);
 
 XBT_PRIVATE char* request_to_string(smx_simcall_t req, int value, simgrid::mc::RequestType type);
 
-/** Check if the given simcall is visible
- *
- *  \return `TRUE` or `FALSE`
- */
-XBT_PRIVATE bool request_is_visible(smx_simcall_t req);
-
 XBT_PRIVATE bool request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx);
 
 /** Is the process ready to execute its simcall?
@@ -45,6 +37,4 @@ XBT_PRIVATE char *request_get_dot_output(smx_simcall_t req, int value);
 }
 }
 
-SG_END_DECL()
-
 #endif