Skip to content

Commit 2ba3979

Browse files
DavionKalhenclaude
andcommitted
Update all documentation with correct GitHub repository URL
- Updated all references from placeholder to https://github.com/IguanAI/libadic - Fixed installation instructions with correct repository URL - Updated author information to IguanAI Team - Fixed PPA references, Docker image names, and brew tap commands - Updated citation information in validation documentation - Removed placeholder email addresses - Added link to GitHub contributors Files updated: * README.md - Installation URLs and author info * INSTALL.md - All repository and package URLs * CONTRIBUTING.md - Upstream repository reference * CHANGELOG.md - GitHub releases link * DESIGN.md - Author attribution * IMPLEMENTATION_OUTLINE.md - Contact information * docs/USER_GUIDE.md - Clone instructions * docs/validation/README.md - Citation and contact info 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 7696e17 commit 2ba3979

8 files changed

Lines changed: 22 additions & 21 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7373

7474
---
7575

76-
For detailed release notes, see [GitHub Releases](https://github.com/yourusername/libadic/releases).
76+
For detailed release notes, see [GitHub Releases](https://github.com/IguanAI/libadic/releases).

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ libadic aims to be the definitive implementation of p-adic arithmetic for valida
1818
1. Fork the repository on GitHub
1919
2. Clone your fork locally:
2020
```bash
21-
git clone https://github.com/yourusername/libadic.git
21+
git clone https://github.com/YOUR-USERNAME/libadic.git
2222
cd libadic
2323
```
2424
3. Add the upstream repository:
2525
```bash
26-
git remote add upstream https://github.com/originalowner/libadic.git
26+
git remote add upstream https://github.com/IguanAI/libadic.git
2727
```
2828

2929
### Development Environment

DESIGN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Excellent choice. A detailed design document is the essential first step to ensu
66

77
**Version:** 1.0
88
**Date:** October 26, 2023
9-
**Author(s):** [Your Name/Team Name], AI Assistant
9+
**Author(s):** IguanAI Team
1010

1111
### **1. Introduction**
1212

IMPLEMENTATION_OUTLINE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ For independent verification, confirm:
344344

345345
## Contact for Verification
346346

347-
- GitHub: https://github.com/yourusername/libadic
347+
- GitHub: https://github.com/IguanAI/libadic
348348
- Mathematical queries: Contact Reid & Li
349349
- Implementation queries: See CONTRIBUTING.md
350350

INSTALL.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
### Option 1: Install from PPA (Recommended)
66
```bash
77
# Add the libadic PPA
8-
sudo add-apt-repository ppa:your-username/libadic-stable
8+
sudo add-apt-repository ppa:IguanAI/libadic-stable
99
sudo apt-get update
1010

1111
# Install the library and development files
@@ -18,8 +18,8 @@ sudo apt-get install libadic-doc
1818
### Option 2: Install from .deb Package
1919
```bash
2020
# Download the latest release from GitHub
21-
wget https://github.com/yourusername/libadic/releases/download/v1.0.0/libadic_1.0.0-1_amd64.deb
22-
wget https://github.com/yourusername/libadic/releases/download/v1.0.0/libadic-dev_1.0.0-1_amd64.deb
21+
wget https://github.com/IguanAI/libadic/releases/download/v1.0.0/libadic_1.0.0-1_amd64.deb
22+
wget https://github.com/IguanAI/libadic/releases/download/v1.0.0/libadic-dev_1.0.0-1_amd64.deb
2323

2424
# Install packages
2525
sudo dpkg -i libadic*.deb
@@ -36,7 +36,7 @@ sudo apt-get install libgmp-dev libmpfr-dev
3636

3737
### Build Debian Packages
3838
```bash
39-
git clone https://github.com/yourusername/libadic.git
39+
git clone https://github.com/IguanAI/libadic.git
4040
cd libadic
4141
./scripts/build_deb.sh
4242
```
@@ -74,7 +74,7 @@ cd libadic
7474

7575
### Standard CMake Build
7676
```bash
77-
git clone https://github.com/yourusername/libadic.git
77+
git clone https://github.com/IguanAI/libadic.git
7878
cd libadic
7979
mkdir build && cd build
8080
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -125,8 +125,8 @@ target_link_libraries(myapp libadic::adic)
125125
## 🐳 Docker Installation
126126

127127
```bash
128-
docker pull yourusername/libadic:latest
129-
docker run -it yourusername/libadic:latest
128+
docker pull IguanAI/libadic:latest
129+
docker run -it IguanAI/libadic:latest
130130
```
131131

132132
## 📋 Package Contents
@@ -191,7 +191,7 @@ See `packaging/PKGBUILD` (coming soon)
191191

192192
### macOS (Homebrew)
193193
```bash
194-
brew tap yourusername/libadic
194+
brew tap IguanAI/libadic
195195
brew install libadic
196196
```
197197

@@ -201,8 +201,8 @@ libadic is distributed under the MIT License. The Debian packages maintain this
201201

202202
## 🤝 Support
203203

204-
- [GitHub Issues](https://github.com/yourusername/libadic/issues)
205-
- [Documentation](https://github.com/yourusername/libadic/tree/main/docs)
204+
- [GitHub Issues](https://github.com/IguanAI/libadic/issues)
205+
- [Documentation](https://github.com/IguanAI/libadic/tree/main/docs)
206206

207207
---
208208

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ gamma = libadic.gamma_p(5, 7, 20) # Γ_7(5)
5555
pip install libadic
5656

5757
# Or build from source
58-
git clone https://github.com/yourusername/libadic.git
58+
git clone https://github.com/IguanAI/libadic.git
5959
cd libadic
6060
pip install .
6161
```
@@ -175,7 +175,8 @@ MIT License - see LICENSE file for details.
175175

176176
## Authors
177177

178-
- [Your Name]
178+
- IguanAI Team
179+
- Contributors on [GitHub](https://github.com/IguanAI/libadic/graphs/contributors)
179180

180181
## Acknowledgments
181182

docs/USER_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ sudo apt-get install -y \
6161
git
6262

6363
# Step 2: Clone the repository
64-
git clone https://github.com/yourusername/libadic.git
64+
git clone https://github.com/IguanAI/libadic.git
6565
cd libadic
6666

6767
# Step 3: Build the library

docs/validation/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,16 +162,16 @@ If you use this validation suite, please cite:
162162
title = {libadic: The Reference Implementation of the Reid-Li Criterion},
163163
author = {Smith, A. and Reid, M. and Li, W.},
164164
year = {2025},
165-
url = {https://github.com/yourusername/libadic},
165+
url = {https://github.com/IguanAI/libadic},
166166
note = {Validation suite proves mathematical uniqueness and necessity}
167167
}
168168
```
169169

170170
## Contact
171171

172172
For questions about the validation suite or Reid-Li criterion:
173-
- GitHub Issues: [libadic/issues](https://github.com/yourusername/libadic/issues)
174-
- Email: reid-li@yourdomain.com
173+
- GitHub Issues: [libadic/issues](https://github.com/IguanAI/libadic/issues)
174+
- Project Repository: [IguanAI/libadic](https://github.com/IguanAI/libadic)
175175

176176
---
177177

0 commit comments

Comments
 (0)