- I wanted to see how things looked, and I am bad at making tree plots.
- Different plots gave different senses, so this did turn out as a thing of beauty.
- I found a limit on what it was doing, so I wanted to figure that out.
- In case of a serious break, the .exe files that MATLAB uses can be regenerated from the reference files.
- If you have some dire need to go back, or if the MATLAB file is the problem, we are using Github, so you can go to an earlier version (which is also what inspired me to use Github for this).
- The .exe files need to be regenerated from the source files any time they are updated.
- To recompile the .exe, use command
swipl-ld -o traverseUp term.c termy.pl
. - Updates to term.c or termy.pl are rare, so consider those highly stable points of reference.
- Compendium files are just output data being passed from Prolog to MATLAB.
- This program starts from 1 and goes up, as far as 1000 currently.
- It cleans the data some, but not perfectly. But then the output is saved.
- MATLAB imports the output and plots it.
- The "dirty" version involves duplicate arrivals to a set of numbers because, when graphed, they look very pretty.
- The "clean" version tries to remove duplication wherever possible.