relacy 0.0+git20191025.acc09bb-2 source package in Ubuntu

Changelog

relacy (0.0+git20191025.acc09bb-2) unstable; urgency=medium

  * Team upload.

 -- Andreas Tille <email address hidden>  Thu, 06 Aug 2020 17:23:18 +0200

Upload details

Uploaded by:
Debian Med
Uploaded to:
Sid
Original maintainer:
Debian Med
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
relacy_0.0+git20191025.acc09bb-2.dsc 2.0 KiB 7cc09437748bbac7e6f19c3760e580d97f7e713416600f42cc20866ce8f20f4a
relacy_0.0+git20191025.acc09bb.orig.tar.xz 87.6 KiB 5ec12eaf002783b8fe01fd15dcff018b092bbd2e5ecb764d511d93325182ecc5
relacy_0.0+git20191025.acc09bb-2.debian.tar.xz 2.5 KiB 4f6e681e78f9516a46fc058f045a74bbdc6ae80ca82d6e427beb6980f3012331

No changes file available.

Binary packages built by this source

relacy-dev: meticulous synchronization algorithm verifier for relaxed memory models

 Relacy Race Detector is a tool for efficient execution of unit tests for
 synchronization algorithms written in C++0x. Every user thread is
 represented as a fiber (ucontext). Every time only one fiber is running,
 and special scheduler controls interleaving between fibers. With random
 scheduler it just executes numerous amount of various interleavings
 between threads. With full search scheduler or context-bound scheduler
 it systematically executes all possible interleavings between threads.
 While executing particular interleaving it makes exhaustive verification
 of various aspects of execution (races, accesses to freed memory etc).
 .
 If no errors found then verification terminates when particular number
 of interleavings are verified (for random scheduler), or when all
 possible interleavings are verified (for full search scheduler). If
 error is found then tool outputs execution history which leads to error
 and terminates. Physically Relacy Race Detector is a header-only library
 for C++98.