Skip to content

Instantly share code, notes, and snippets.

@mark-d-holmberg
Created November 30, 2011 20:21
Show Gist options
  • Save mark-d-holmberg/1410644 to your computer and use it in GitHub Desktop.
Save mark-d-holmberg/1410644 to your computer and use it in GitHub Desktop.
The BASH run script for Simpleton Wumpus World Agent
#!/bin/bash
agent=SIMPLETON
port=31656
trace=1
SLEEP=10
steps=150
seed=1257360045
./RunProg ./WW_Test -p ${port} -d 0 -D 1 -R 1 -s ${steps} -t 0 -S ${SLEEP} -z {seed} &
sleep 3
./RunProg ./WD_Test -p ${port} &
./RunProg ./WA_Test -p ${port} -a S -t $trace >& ${agent}_trace.out
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment