Skip to content

Commit f6f0b50

Browse files
GiggleLiuclaude
andauthored
Update repository organization from GiggleLiu to TensorBFS (#43)
Updated all repository URLs, documentation links, and badges to reflect the repository move from GiggleLiu to TensorBFS organization. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 633b763 commit f6f0b50

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Thank you for your interest in contributing to BPDecoderPlus! This document prov
1313

1414
```bash
1515
# Clone the repository
16-
git clone https://github.com/GiggleLiu/BPDecoderPlus.git
16+
git clone https://github.com/TensorBFS/BPDecoderPlus.git
1717
cd BPDecoderPlus
1818

1919
# Install dependencies with uv (recommended)
@@ -257,9 +257,9 @@ Please include:
257257

258258
## Getting Help
259259

260-
- **Issues**: [GitHub Issues](https://github.com/GiggleLiu/BPDecoderPlus/issues)
260+
- **Issues**: [GitHub Issues](https://github.com/TensorBFS/BPDecoderPlus/issues)
261261
- **Discussions**: Use GitHub Discussions for questions
262-
- **Documentation**: [Online Docs](https://giggleliu.github.io/BPDecoderPlus/)
262+
- **Documentation**: [Online Docs](https://tensorbfs.github.io/BPDecoderPlus/)
263263

264264
## Code of Conduct
265265

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# BPDecoderPlus: Quantum Error Correction with Belief Propagation
22

3-
[![Tests](https://github.com/GiggleLiu/BPDecoderPlus/actions/workflows/test.yml/badge.svg)](https://github.com/GiggleLiu/BPDecoderPlus/actions/workflows/test.yml)
4-
[![codecov](https://codecov.io/gh/GiggleLiu/BPDecoderPlus/branch/main/graph/badge.svg)](https://codecov.io/gh/GiggleLiu/BPDecoderPlus)
5-
[![Documentation](https://img.shields.io/badge/docs-online-blue.svg)](https://giggleliu.github.io/BPDecoderPlus/)
3+
[![Tests](https://github.com/TensorBFS/BPDecoderPlus/actions/workflows/test.yml/badge.svg)](https://github.com/TensorBFS/BPDecoderPlus/actions/workflows/test.yml)
4+
[![codecov](https://codecov.io/gh/TensorBFS/BPDecoderPlus/branch/main/graph/badge.svg)](https://codecov.io/gh/TensorBFS/BPDecoderPlus)
5+
[![Documentation](https://img.shields.io/badge/docs-online-blue.svg)](https://tensorbfs.github.io/BPDecoderPlus/)
66
[![Python](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
77
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
88

@@ -118,7 +118,7 @@ Before starting, please read these foundational papers:
118118
uv pip install bpdecoderplus
119119

120120
# For development
121-
git clone https://github.com/GiggleLiu/BPDecoderPlus.git
121+
git clone https://github.com/TensorBFS/BPDecoderPlus.git
122122
cd BPDecoderPlus
123123
uv sync --dev
124124
```
@@ -127,7 +127,7 @@ uv sync --dev
127127

128128
```bash
129129
# Install from source
130-
git clone https://github.com/GiggleLiu/BPDecoderPlus.git
130+
git clone https://github.com/TensorBFS/BPDecoderPlus.git
131131
cd BPDecoderPlus
132132
pip install -e .[dev,docs]
133133
```
@@ -266,7 +266,7 @@ make docs
266266

267267
```bash
268268
# Clone repository
269-
git clone https://github.com/GiggleLiu/BPDecoderPlus.git
269+
git clone https://github.com/TensorBFS/BPDecoderPlus.git
270270
cd BPDecoderPlus
271271

272272
# Install with development dependencies
@@ -294,7 +294,7 @@ This project uses:
294294
### Documentation
295295
- [Stim Documentation](https://github.com/quantumlib/Stim/blob/main/doc/index.md)
296296
- [Error Correction Zoo](https://errorcorrectionzoo.org/)
297-
- [BPDecoderPlus Documentation](https://giggleliu.github.io/BPDecoderPlus/)
297+
- [BPDecoderPlus Documentation](https://tensorbfs.github.io/BPDecoderPlus/)
298298

299299
## Troubleshooting
300300

@@ -332,7 +332,7 @@ If you use BPDecoderPlus in your research, please cite:
332332
title = {BPDecoderPlus: Belief Propagation Decoders for Surface Codes},
333333
author = {Liu, Jinguo and Contributors},
334334
year = {2025},
335-
url = {https://github.com/GiggleLiu/BPDecoderPlus}
335+
url = {https://github.com/TensorBFS/BPDecoderPlus}
336336
}
337337
```
338338

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# BPDecoderPlus
22

3-
[![Tests](https://github.com/GiggleLiu/BPDecoderPlus/actions/workflows/test.yml/badge.svg)](https://github.com/GiggleLiu/BPDecoderPlus/actions/workflows/test.yml)
4-
[![codecov](https://codecov.io/gh/GiggleLiu/BPDecoderPlus/branch/main/graph/badge.svg)](https://codecov.io/gh/GiggleLiu/BPDecoderPlus)
3+
[![Tests](https://github.com/TensorBFS/BPDecoderPlus/actions/workflows/test.yml/badge.svg)](https://github.com/TensorBFS/BPDecoderPlus/actions/workflows/test.yml)
4+
[![codecov](https://codecov.io/gh/TensorBFS/BPDecoderPlus/branch/main/graph/badge.svg)](https://codecov.io/gh/TensorBFS/BPDecoderPlus)
55

66
**Quantum Error Correction with Belief Propagation**
77

@@ -42,7 +42,7 @@ Install the package:
4242

4343
```bash
4444
# Clone the repository
45-
git clone https://github.com/GiggleLiu/BPDecoderPlus.git
45+
git clone https://github.com/TensorBFS/BPDecoderPlus.git
4646
cd BPDecoderPlus
4747

4848
# Install dependencies

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
site_name: BPDecoderPlus Documentation
22
site_description: Quantum Error Correction with Belief Propagation
33
site_author: BPDecoderPlus Contributors
4-
repo_url: https://github.com/GiggleLiu/BPDecoderPlus
5-
repo_name: GiggleLiu/BPDecoderPlus
4+
repo_url: https://github.com/TensorBFS/BPDecoderPlus
5+
repo_name: TensorBFS/BPDecoderPlus
66

77
theme:
88
name: material

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ dependencies = [
3030
]
3131

3232
[project.urls]
33-
Homepage = "https://github.com/GiggleLiu/BPDecoderPlus"
34-
Documentation = "https://giggleliu.github.io/BPDecoderPlus/"
35-
Repository = "https://github.com/GiggleLiu/BPDecoderPlus"
36-
Issues = "https://github.com/GiggleLiu/BPDecoderPlus/issues"
37-
Changelog = "https://github.com/GiggleLiu/BPDecoderPlus/blob/main/CHANGELOG.md"
33+
Homepage = "https://github.com/TensorBFS/BPDecoderPlus"
34+
Documentation = "https://tensorbfs.github.io/BPDecoderPlus/"
35+
Repository = "https://github.com/TensorBFS/BPDecoderPlus"
36+
Issues = "https://github.com/TensorBFS/BPDecoderPlus/issues"
37+
Changelog = "https://github.com/TensorBFS/BPDecoderPlus/blob/main/CHANGELOG.md"
3838

3939
[project.optional-dependencies]
4040
dev = [

0 commit comments

Comments
 (0)