push_swap operation counter
- you need to have a working checker. If you use the provided checker_OS, you need to rename it "checker".
- you need to have a
all
command in your makefile that compiles your push_swap.
get to your push_swap repo then :
git clone https://github.com/ChevalierSoft/ps_tester.git && cd ./ps_tester && make
./pt <size of the stack>
./pt <size of the stack> && open index.html
- If you find that your push_swap uses too much operations, the maximum operation count is stored in
maximum_spike.txt
. - The final view is stored inside
index.hml
in ps_tester's root. - Notice that this programme will compile your code using
make
, notmake re
because checker is now a bonus.