From 01a5237b0f1716059130913e385f03e780f40204 Mon Sep 17 00:00:00 2001 From: Arun Saha Date: Tue, 25 Nov 2025 22:10:05 -0800 Subject: [PATCH 1/2] Added codecov badge to README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 60539d7..10681eb 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![Go Reference](https://pkg.go.dev/badge/github.com/arunksaha/gdsu.svg)](https://pkg.go.dev/github.com/arunksaha/gdsu) [![Go Report Card](https://goreportcard.com/badge/github.com/arunksaha/gdsu)](https://goreportcard.com/report/github.com/arunksaha/gdsu) ![Build](https://github.com/arunksaha/gdsu/actions/workflows/ci.yml/badge.svg) - +[![codecov](https://codecov.io/github/arunksaha/gdsu/graph/badge.svg?token=134TP2MY41)](https://codecov.io/github/arunksaha/gdsu) # gdsu — Generic Disjoint Set Union (Union-Find) From f0fcc789cd452c2c8cd79487a3a9f47c79a65e8f Mon Sep 17 00:00:00 2001 From: Arun Saha Date: Tue, 25 Nov 2025 22:18:59 -0800 Subject: [PATCH 2/2] formatting changes in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 10681eb..0947d3f 100644 --- a/README.md +++ b/README.md @@ -163,13 +163,13 @@ Often (Go) DSU implementations: `gdsu` improves on all of these: -### ✔ Unified interface +### Unified interface Both implementations satisfy the same `DSU[T]` interface. -### ✓ Generic sparse DSU +### Generic sparse DSU Supports any comparable type, grows dynamically. -### ✓ High-performance compact DSU +### High-performance compact DSU Optimized for numeric workloads. ---