Some algorithms in Go
  • Go 77.4%
  • TLA 19.3%
  • Makefile 3.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Paul Buetow 3f906d0326 Close verification-coverage gaps; harness finds two more bugs
Extends the verification harness from sorts-only to the whole repo, and in
doing so surfaces two further latent bugs (on top of the earlier hash-shift one):

Bugs found and fixed:
- queue/elementarypriority.go: max() seeded at the zero value, so an
  all-negative queue reported a phantom max of 0 and DeleteMax returned/removed
  the wrong element. Caught by the new queue permutation property (testing/quick
  generates negatives; the old test data never did). Seed from a[0] instead.
- sort/sleep.go: result built on NewArrayList(len(a)) -- a slice of that LENGTH
  (len(a) zeros) -- then appended to, yielding double-length output with leading
  zeros. The old .Sorted()-only test passed because zeros-then-ascending is
  sorted. Caught by the new Sleep permutation check. Build from an empty slice.

Coverage added:
- queue/property_test.go: ordering + permutation (completeness) for both queues.
- TestSleepSort now also checks permutation, not just Sorted().
- docs/verification.md: paper proofs for all search/set structures (Elementary,
  Hash, BST, red-black BST invariants, GoMap) and both priority queues.
- formal/tla/ParallelSort.tla: exhaustive fork/join model of ParallelMerge/
  ParallelQuick -- disjoint write-ranges (no data race) + termination. Wired
  into make verify-model.
- formal/selection.go: second Gobra proof (memory safety + sortedness). Wired
  into make verify-formal.
- docs/case-study-bugs-found.md: extensive write-up of all three bugs, how each
  was caught, why the old tests missed it, and the fix (supersedes the earlier
  single-bug case study).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-06 10:32:34 +03:00
docs Close verification-coverage gaps; harness finds two more bugs 2026-07-06 10:32:34 +03:00
ds move types to types.go 2023-04-09 14:37:30 +03:00
formal Close verification-coverage gaps; harness finds two more bugs 2026-07-06 10:32:34 +03:00
queue Close verification-coverage gaps; harness finds two more bugs 2026-07-06 10:32:34 +03:00
search Add layered formal-verification harness 2026-07-06 10:15:56 +03:00
sort Close verification-coverage gaps; harness finds two more bugs 2026-07-06 10:32:34 +03:00
.gitignore Add layered formal-verification harness 2026-07-06 10:15:56 +03:00
bench.out add bench results 2023-04-02 23:33:20 +03:00
go.mod initial generics 2023-04-02 20:22:13 +03:00
go.sum initial generics 2023-04-02 20:22:13 +03:00
LICENSE add license 2023-03-24 22:33:32 +02:00
Makefile Close verification-coverage gaps; harness finds two more bugs 2026-07-06 10:32:34 +03:00
README.md add license 2023-03-24 22:33:32 +02:00
staticcheck.conf Add layered formal-verification harness 2026-07-06 10:15:56 +03:00
test.out add test.out 2023-04-02 23:34:29 +03:00

Algorithms

Introduction

This includes exercises from the Algorithms lecture. Well, this is just a refresher exercise.

Testing

For unit tests run:

make test

Benchmarking

For running benchmars run:

make bench