From 47a5de74326e24d09854d58d3f238e495bb2344e Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Wed, 14 Jan 2026 10:55:50 -0500 Subject: [PATCH] update AGENT.md and README.md to match current state --- AGENT.md | 2 -- README.md | 11 ++--------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/AGENT.md b/AGENT.md index b2e49ae..133bba7 100644 --- a/AGENT.md +++ b/AGENT.md @@ -29,7 +29,6 @@ ## Git Workflow - Small commits with logical separation - Concise commit messages -- Claude footer: short one-liner only ## Session Summaries - When user requests session summary, create in docs/session_summaries/ @@ -39,7 +38,6 @@ ## Common Commands - Build: make -- Run: ./orbit_sim [config_file] - Test: make test - See README.md for full build instructions diff --git a/README.md b/README.md index fdf0f31..26094ef 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ A 3D orbital mechanics simulation using a 2-body gravitational model with sphere - 2-body gravitational physics with SOI transitions - Configurable star systems via toml files -- Solar system example configurations ## Getting Started @@ -23,7 +22,8 @@ git submodule update --init --recursive # If already cloned without --recursive ```bash sudo apt update sudo apt install -y build-essential g++ make libx11-dev libxcursor-dev \ - libxrandr-dev libxinerama-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev + libxrandr-dev libxinerama-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev \ + libcatch2-dev ``` ### Building @@ -49,13 +49,6 @@ make clean-all # Clean everything including raylib ```bash make test # Run full automated test suite ``` - -The test suite validates: -- Orbital period accuracy (Earth, Mars) -- Energy conservation (RK4 integration) -- SOI transitions and multi-body interactions -- Eccentric orbit behavior (comets, parabolic, hyperbolic) - All tests use Catch2 framework with configurable time steps and durations. ## License