Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Temporary fixes
[simgrid.git] / src /
2023-03-31 mlaurentTemporary fixes
2023-03-30 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-03-30 mlaurentRename guide as strategy and fix counter-example displa...
2023-03-30 mlaurentReplace state copy with recipe: list of transition...
2023-03-28 mlaurentChange opened states for a priority queue
2023-03-27 mlaurentAbide by both compiler warnings
2023-03-27 mlaurentNow handle random transition and multiple times transitions
2023-03-27 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-03-26 Martin QuinsonImplement reforks by forking the application, to save...
2023-03-25 Martin Quinsonmemset 0 the memory that is sent over the network
2023-03-25 Martin QuinsonMC protocol: rename INITIAL_ADDRESSES msg to NEED_MEMINFO
2023-03-25 Martin QuinsonActually, now that the appside is not ptraced, there...
2023-03-25 Martin QuinsonInvert another logic error: we need ptrace when we...
2023-03-25 Martin QuinsonThis test is always false, as we asserted so just above
2023-03-25 Martin QuinsonDo not ask for memory info when restarting in refork...
2023-03-24 Martin QuinsonUse a portable name for SIGABRT
2023-03-24 Martin QuinsonMC: disable personality() as it fails on CI and is...
2023-03-24 Martin QuinsonFix the refork feature by not ptracing App so that...
2023-03-24 Martin QuinsonFix another sonar warning
2023-03-24 Arnaud GierschDelete redundant blank lines at the start of a code...
2023-03-24 mlaurentAdd copy constructor to state, so we can backtrack...
2023-03-24 Arnaud GierschStrengthen debug messages on channel send/recv.
2023-03-24 Arnaud GierschSimplify member initialization.
2023-03-24 Arnaud GierschReduce scope for variable.
2023-03-24 Arnaud GierschSimplify loop.
2023-03-24 Arnaud GierschDetermine n_transitions on receiving side (and remove...
2023-03-24 Arnaud GierschThere's no need to compute the total transition count...
2023-03-24 Arnaud GierschRemove superfluous test, and reduce depth of nested...
2023-03-24 Arnaud GierschMerge loops and get rid of the "probes" temporary vector.
2023-03-24 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-03-23 Martin QuinsonDont use handle_waitpid after we killed the App, as...
2023-03-23 Martin QuinsonActually, read()=0 is not an issue in the AppSide
2023-03-23 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-03-23 mlaurenttry to fix stack handling
2023-03-22 Martin QuinsonFix some easy sonar smells
2023-03-22 Martin QuinsonFix two sonar bugs
2023-03-22 Martin QuinsonMerge branch 'udpor-phase6' into 'master'
2023-03-21 Martin QuinsonMake sure that the dtor of CheckerSide actually kills...
2023-03-21 Martin QuinsonFix the liveness tests when the reforks are compiled...
2023-03-21 mlaurentfix order of execute_next calls
2023-03-20 Martin QuinsonManually handle the memory associated to the libevent...
2023-03-20 Martin QuinsonDo not initialize the App's memory introspection if...
2023-03-20 Martin QuinsonPut everything in position to re-fork the verified App
2023-03-20 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-03-20 mlaurentadd wait guide and mofidication for the heuristic compu...
2023-03-20 Maxwell PirtleAddress minor comments in MR review
2023-03-20 Maxwell PirtleRemove empty Comb.cpp
2023-03-20 Maxwell PirtleAdd documentation for Comb data structure
2023-03-19 Martin Quinsoncosmetics
2023-03-19 Martin QuinsonMove more of the CheckerSide creation logic to the...
2023-03-19 Martin QuinsonMC: disable Address Space Layout Randomization in the...
2023-03-19 Martin QuinsonDiffer the creation of the RemoteProcessMemory to when...
2023-03-19 Martin QuinsonBetter responsabilities splitup between CheckerSide...
2023-03-19 Martin QuinsonMove methods not related to Memory out of RemoteProcess...
2023-03-19 Martin QuinsonFinally kill the now empty ModelChecker class
2023-03-19 Martin QuinsonMove the memory handling of RemoteProcessMemory singlet...
2023-03-19 Martin QuinsonMove handle_message from ModelChecker to RemoteProcessM...
2023-03-19 Martin QuinsonMove handle_waitpid from ModelChecker to RemoteProcessM...
2023-03-19 Martin QuinsonMake a global singleton of Exploration, to kill ModelCh...
2023-03-19 Martin QuinsonGosh, how many calls to that global were there?
2023-03-19 Martin QuinsonKill a now unused class in mc
2023-03-19 Martin QuinsonRemove some more usage of mc_model_checker in Region...
2023-03-19 Martin QuinsonAnother use of mc_model_checker disapears. In Snapshot...
2023-03-19 Martin Quinsonanother mc_model_checker call location disappears
2023-03-18 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-03-18 mlaurentBases for wait distance guide
2023-03-18 Martin QuinsonFix MC+clang builds
2023-03-18 Martin QuinsonReduce a bit the adherance of handle_waitpid to ModelCh...
2023-03-18 Martin QuinsonMerge branch 'master' into 'master'
2023-03-18 mlaurentMove DPOR and sleep set algorithm from backtrack to...
2023-03-18 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-03-18 mlaurentReplace todo direct access with consider methods; guide...
2023-03-18 mlaurentBasicGuide handle next_transition if asked to
2023-03-18 Martin QuinsonMerge CheckerSide::start() intp the constructor
2023-03-18 Martin QuinsonBetter split of responsabilities between CheckerSide...
2023-03-18 Martin QuinsonMove the checker_side_ from the ModelChecker to the...
2023-03-18 Martin QuinsonOne usage of mc_model_checker less
2023-03-18 mlaurentAdd GuidedState abstract class; move ActorState management
2023-03-17 Martin QuinsonSimplify Channel::receive by handling non-blocking...
2023-03-17 Martin QuinsonA few calls to mc_model_checker less by passing more...
2023-03-17 Martin QuinsonMove handle_simcall from ModelChecker to RemoteApp
2023-03-17 Martin QuinsonMerge branch 'master' into 'master'
2023-03-17 mlaurentAdd reference to parent state: only use this creation...
2023-03-17 Maxwell PirtleFix test in k-partial alternatives step five
2023-03-16 Arnaud GierschMissing include.
2023-03-16 Maxwell PirtleRemove unused code in Comb.cpp + fix MANIFEST.in
2023-03-16 Maxwell PirtleAdd full example for K-partial alternatives
2023-03-16 Arnaud GierschUseless guards.
2023-03-16 Arnaud GierschApply "smpi/buffering" when MC_record_replay_is_active...
2023-03-15 Martin QuinsonSanitize how we know the current MC mode
2023-03-15 Martin QuinsonMake it compile with all warnings enabled
2023-03-15 Maxwell PirtleMove alternative computation to Configuration for testing
2023-03-15 Maxwell PirtleAdd semantic equivalence to UnfoldingEvent
2023-03-15 Maxwell PirtleAdd comments in K-partial alternatives computation
2023-03-14 Arnaud GierschRemove comments about non-existent support for smpi...
2023-03-14 Arnaud GierschReally check the privatization option in the MCed SMPI...
2023-03-14 Maxwell PirtleAdd first go at implementation of K-partial alternatives
2023-03-13 Martin QuinsonTest for JSON before using it
2023-03-13 Martin QuinsonCosmetics
2023-03-13 Fred SuterMerge branch 'master' into 'master'
next