From c966f4c4eed013e822daa8886d2577d075db1b66 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Fri, 9 May 2025 21:51:49 +1200 Subject: Revised readme into better markdown --- readme.txt | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 readme.txt (limited to 'readme.txt') diff --git a/readme.txt b/readme.txt deleted file mode 100644 index 62d7e92..0000000 --- a/readme.txt +++ /dev/null @@ -1,45 +0,0 @@ - -Number Wall Tools -================= - - - -This project consists of three tools: - -visualwall -This is a GUI program that creates a colored visual representation of a number wall. Numbers in the -wall that are equal to zero modulo a given modulus are colored in one color, while all other numbers -are colored in a different color. - -wallgen -This is a command line program that generates a number wall in comma separated value format from a -given sequence. Generation of values in the wall is stopped once a row is encountered which is all -zeros. - -wallsolve -This is a command line program that uses a number wall to calculate a recurrence relation that -describes a given sequence. The relation is then used to predict the next value in the sequence. - -When supplying sequence input to these tools by way of an input file, the required format is a -textfile that has a comma separated value unquoted integer sequence as its first line. All -additional lines in the file are ignored. - - - -The dependencies are: - -gnu make -lablgtk -ocaml -ocamlfind -zarith - - - -How to build/install: - -Once the dependencies are satisfied "make all" will build all binaries. In addition, "make tests" -can be used to build a test program that was created to check whether the implementation of -polynomials was working correctly. - - -- cgit