From 855d97c06bf34c9203f38836a01313f253852d2c Mon Sep 17 00:00:00 2001 From: Nicholas Karlson Date: Sun, 9 Nov 2025 12:19:50 -0800 Subject: [PATCH] chore: add Makefile target to run all Ch13 examples --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..026b752 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +.PHONY: ch13 +ch13: +\tpython scripts/sim_stroop.py +\tpython scripts/ch13_stroop_within.py --save-plots +\tpython scripts/sim_fitness_2x2.py +\tpython scripts/ch13_fitness_mixed.py --save-plots