Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / mc /
2023-11-21 Martin QuinsonMerge branch 'master' of framagit.org:simgrid/simgrid
2023-11-21 Martin QuinsonVarious sonar cleanups
2023-11-15 Martin QuinsonMerge branch 'battery-get-name' into 'master'
2023-11-13 Martin QuinsonMC: move the reversible_race logic to the Transition...
2023-11-12 Martin QuinsonSmall typos in comments
2023-11-12 Martin QuinsonMerge branch 'master' of framagit.org:simgrid/simgrid
2023-11-10 mlaurentAdd debug info for reversible race construction
2023-11-09 mlaurentRaffine reversible race calculation for MutexWait
2023-11-09 mlaurentAdd a missing independence theorem about Mutex
2023-11-09 Martin QuinsonCleanup work to make is_race_reversible() a method...
2023-11-09 mlaurentSuppressed a bit too much of codes
2023-11-09 mlaurentClang format over some mc files
2023-11-09 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-11-09 mlaurentDiscard the wakeup tree when ODPOR reaches a disabled...
2023-11-08 Martin QuinsonSpit a message when ODPOR is not optimal
2023-11-08 mlaurentRedondant line in insertion
2023-11-08 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-11-08 Martin QuinsonFix ODPOR: overapproximate ReversibleRace (to not miss...
2023-11-08 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-11-08 mlaurentAdd debug log for ODPOR + required explaining comments
2023-11-08 Martin QuinsonFix SemWai::ReversibleRace()
2023-11-07 Martin QuinsonSimply rewrap comments and reindent, no real change
2023-11-07 Martin QuinsonAdd an assert that the checker don't try to exec disabl...
2023-11-07 Martin QuinsonImprove the debug messages
2023-11-07 Martin QuinsonTell the MC transition about the semaphore capacity...
2023-11-07 Martin Quinsoncosmetics: this is an ID, not a ptr
2023-11-07 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-11-07 mlaurentAdd some debug info
2023-11-06 Martin Quinsonalso remove xbt/automaton which was only useful to...
2023-11-06 Martin QuinsonActions executed by the same actor are always dependent...
2023-11-06 Martin QuinsonODPOR: more verbose message on assertion failure
2023-11-05 Martin QuinsonAnother attempt to fix the printf issue on mac: don...
2023-11-05 Martin QuinsonAvoid casting errors in printf on MacOSX
2023-11-05 Martin Quinsonunify struct and class declarations
2023-11-05 Martin QuinsonRemove the stateful model-checking from the archive...
2023-11-03 Martin QuinsonMerge branch 'master' into simgrid-fork-changelog-plugins
2023-11-02 Martin QuinsonFix MC builds
2023-11-02 Martin QuinsonFix various build errors
2023-11-02 Martin QuinsonDo not use MC_process_clock_add() for now, as it makes...
2023-11-02 Martin QuinsonMC: more debug messages
2023-11-02 Martin QuinsonActions executed by the same actor are always dependent
2023-11-02 Martin QuinsonMC: add an observer to sleep simcalls
2023-11-02 Martin QuinsonMC: display the 100 first transitions when we reach...
2023-10-30 Martin QuinsonMerge branch 'example-battery-chiller-solar' into ...
2023-10-24 Fred SuterMerge branch 'master' into mq
2023-10-21 Martin QuinsonFix the dependency of barrier from the same actor ...
2023-09-13 Martin QuinsonMerge branch 'plugins-energy-battery-interaction' into...
2023-07-20 Fred SuterMerge branch 'master' into jbod
2023-07-15 Martin QuinsonMerge branch 'fix-comm-signal' into 'master'
2023-07-12 Arnaud GierschFix misleading indentation.
2023-07-10 Fred SuterMerge remote-tracking branch 'origin/master' into jbod
2023-07-10 Martin QuinsonMerge branch 'master' of framagit.org:simgrid/simgrid
2023-07-10 Arnaud GierschMissing includes (for gcc-14?)
2023-07-10 Arnaud GierschCosmetics (codefactor.io).
2023-07-10 Arnaud GierschMake function "const", and void copy by returning a...
2023-07-02 Martin QuinsonFix a MC serialization bug around WaitAny
2023-07-01 Martin QuinsonDon't send sbuff and rbuff to the MC checker
2023-07-01 Martin QuinsonMore verbose error and debug messages
2023-06-29 Martin QuinsonShow the user-level call in MC backtraces
2023-06-29 Martin QuinsonMerge branch 'master' into 'master'
2023-06-29 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-06-29 Arnaud GierschUnused parameters (Sonar).
2023-06-29 Arnaud GierschShadowed variables (Sonar).
2023-06-29 Arnaud GierschPass large objects by reference to const (Sonar).
2023-06-29 Arnaud GierschThe result of "std::move" should not be passed as a...
2023-06-28 Arnaud GierschFunctions having rvalue reference arguments should...
2023-06-28 Arnaud GierschFix: "std::move" should only be used where moving can...
2023-06-28 Arnaud GierschReplace redundant type with "auto" (Sonar).
2023-06-28 Arnaud GierschRemove nested code blocks (Sonar).
2023-06-28 Arnaud GierschFurther little simplifications around "if" statements.
2023-06-28 Martin QuinsonMerge branch 'master' of framagit.org:simgrid/simgrid
2023-06-28 Martin QuinsonMerge branch 'master' into 'python_bindings_host_load_p...
2023-06-28 Martin QuinsonTypo found by lintian
2023-06-27 Arnaud GierschUse std::make_unique (Sonar).
2023-06-27 Arnaud GierschRespect coding style for boolean operators.
2023-06-27 Arnaud GierschUse the init-statement to reduce scope of local variabl...
2023-06-27 Arnaud GierschUse std::any_of(...).
2023-06-27 Arnaud GierschMisc. Sonar smells.
2023-06-27 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-06-26 Arnaud GierschWhitespace cleanup (codefactor.io).
2023-06-24 Martin Quinsonsleep sets are not an option in MC. We always need...
2023-06-22 Martin QuinsonMerge branch 'master' of framagit.org:simgrid/simgrid
2023-06-22 Martin Quinsonmodel-check/sleep-set is now true by default
2023-06-20 Fred SuterMerge branch 'master' into 'task-token'
2023-06-16 Arnaud GierschMerge branch 'fix-wakeup-tree-iterator' into 'master'
2023-06-16 Maxwell PirtleFix WakeupTreeIterator bug comparing diff iterators
2023-06-16 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-06-15 Martin QuinsonFix the liveness tests by ignoring the Comm ID memory...
2023-06-15 Martin QuinsonDo not consider the memory addresses in MC depends...
2023-06-15 Martin QuinsonMC: Give an ID to comms to not use their pointer value...
2023-06-15 Arnaud GierschA few spelling mistakes and many replacements: [Ss...
2023-06-15 Arnaud GierschAnother unw_accessor forgotten in previous commit.
2023-06-15 Arnaud GierschFix error: missing initializer for member unw_accessors...
2023-06-15 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-06-14 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-06-13 Arnaud GierschA few spelling mistakes and many replacements: [Ss...
2023-06-13 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-06-13 mlaurentMerge branch 'master' of https://framagit.org/simgrid...
2023-06-13 Arnaud GierschAnother unw_accessor forgotten in previous commit.
2023-06-13 Arnaud GierschFix error: missing initializer for member unw_accessors...
next