BPlusTree3

(β˜… 409)

A plug-compatible replacement of Rust's BTree collection

  • .gitignore
  • agent.md
  • analyze_programming_time.py
  • arena_elimination_analysis.md
  • Cargo.lock
  • Cargo.toml
  • commits.txt
  • LICENSE
  • programming_time_comprehensive.png
  • README.md
  • rust-toolchain.toml
  • simple_time_analysis.py
  • test_coverage_analysis.md
  • visualize_programming_time.py

# Installation Guide

1. Get the code
git clone https://github.com/KentBeck/BPlusTree3

Downloads the entire project code from GitHub to your computer.

cd BPlusTree3

Moves into the project folder you just downloaded.

2. Python

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
pip install -e .

Installs the Python libraries listed in requirements.txt (or similar).

python -m pytest tests/

Runs the Python script (or module).

βœ… If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

3. Rust

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Rust (rustup) Installing via rustup also installs cargo.
cargo test --features testing

Type this command into your terminal and run it.

cargo bench

Type this command into your terminal and run it.

βœ… If cargo build finishes without errors, it worked. The executable is created under target/.

Pulled directly from this repo's README.

// repository documentation