├── .gitignore ├── LICENSE ├── README.md ├── monkeys.txt ├── show_strips.py ├── simple_blocks.txt ├── strips.py ├── super_simple_blocks.txt ├── towers1_strips.txt ├── towers2_strips.txt ├── towers3_strips.txt └── towers_strips.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/README.md -------------------------------------------------------------------------------- /monkeys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/monkeys.txt -------------------------------------------------------------------------------- /show_strips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/show_strips.py -------------------------------------------------------------------------------- /simple_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/simple_blocks.txt -------------------------------------------------------------------------------- /strips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/strips.py -------------------------------------------------------------------------------- /super_simple_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/super_simple_blocks.txt -------------------------------------------------------------------------------- /towers1_strips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/towers1_strips.txt -------------------------------------------------------------------------------- /towers2_strips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/towers2_strips.txt -------------------------------------------------------------------------------- /towers3_strips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/towers3_strips.txt -------------------------------------------------------------------------------- /towers_strips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansey/strips/HEAD/towers_strips.txt --------------------------------------------------------------------------------