summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2026-07-06Close verification-coverage gaps; harness finds two more bugsHEADmasterPaul Buetow
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-06Add layered formal-verification harnessPaul Buetow
Adds four complementary layers to verify correctness, all runnable locally, weakest-but-broadest to strongest-but-narrowest: 0. Paper proofs (docs/verification.md): Hoare invariants, termination measures, and permutation arguments for every algorithm. 1. Property tests (sort/property_test.go): testing/quick asserting ordering AND permutation for every sort. Closes a real gap -- the existing tests only checked .Sorted(), so a sort dropping/duplicating elements passed. 2. make verify: go vet + staticcheck + go test -race -short, with -short gating of the large sizes in sort/search tests so the race build is quick. 3. make verify-model: TLA+/TLC model check of sleep sort (termination, deadlock-freedom, sorted permutation) -- formal/tla/. 4. make verify-formal: Gobra deductive proof (Viper+Z3) that a monomorphized insertion sort is memory-safe and sorted for all inputs -- formal/. The static layer already found a latent bug: hash() used key<<10 on a generic integer, which silently yields 0 for narrow key types (int8), degrading the hash. Tests missed it because they only use int keys. Fixed by mixing in int64; documented extensively in docs/case-study-hash-shift-bug.md. Also cleans up dead code and a blank-identifier range flagged by staticcheck. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2023-04-09sleep sort is not being benchmarkedPaul Buetow
2023-04-09add sleep sortPaul Buetow
2023-04-09move types to types.goPaul Buetow
2023-04-02add test.outPaul Buetow
2023-04-02add bench resultsPaul Buetow
2023-04-02cleanupPaul Buetow
2023-04-02refactordevelopPaul Buetow
2023-04-02unit tests pass after conversion to genericsPaul Buetow
2023-04-02initial genericsPaul Buetow
2023-03-24add licensePaul Buetow
2023-03-24we are on codeberg nowPaul Buetow
2023-03-24cleanup makefilePaul Buetow
2023-03-24rename interface Put to SetPaul Buetow
2020-12-26hash worksPaul Buetow
2020-12-26hash worksPaul Buetow
2020-12-21remove TODOPaul Buetow
2020-12-21initial hash mapPaul Buetow
2020-12-21add gomap for searchPaul Buetow
2020-12-21add Size to search interface and fix redblacktree testsPaul Buetow
2020-12-21initial del support for redblack treePaul Buetow
2020-12-15initial refactor of the red-black treePaul Buetow
2020-12-05more on redblack bstPaul Buetow
2020-12-05initial redblack bstPaul Buetow
2020-12-05rename set to searchPaul Buetow
2020-11-15fixed bst implementation and refactored unit testsPaul Buetow
2020-11-12more unit testsPaul Buetow
2020-11-10initial balanced bstPaul Buetow
2020-11-10bench and test all packagesPaul Buetow
2020-11-10Add set benchmarkingPaul Buetow
2020-11-05BST basic unit test worksPaul Buetow
2020-11-05Can delete a node from bstPaul Buetow
2020-11-03add min and max binary search tree methodsPaul Buetow
2020-10-29update readmePaul Buetow
2020-10-17more on bstPaul Buetow
2020-10-16more on treePaul Buetow
2020-10-16add go.modPaul Buetow
2020-10-16migrate to gomodulesPaul Buetow
2020-10-16initial search tree setPaul Buetow
2020-10-04Add elementary set dsPaul Buetow
2020-10-04Initial tree data structurePaul Buetow
2020-09-19use reasonable benchmark thresholds for pqueuesPaul Buetow
2020-09-19priority queue heap worksPaul Buetow
2020-08-24more on heapprioPaul Buetow
2020-08-24initial heap based pqPaul Buetow
2020-08-24refactorPaul Buetow
2020-08-24fix elementary pqPaul Buetow
2020-08-24benchmark of pqPaul Buetow
2020-08-24elementary priority queuePaul Buetow