python -m venv .venv
# Windows
.venv\Scripts\activate
# macOS/Linux
source .venv/bin/activate
pip install -r requirements.txtpython main.pySyntax check:
python -m py_compile main.py connection.py hodgkinhuxley.py nand_architectures.py- Keep changes focused and small.
- Maintain deterministic logic behavior in NAND modules.
- Preserve neuron/synapse API compatibility unless intentionally versioned.
- Update docs in
README.mdanddocs/when changing APIs or behavior.
- Summarize what changed and why.
- Include validation commands and outcomes.
- Mention any known limitations or future follow-up work.