From cc25ea91b6a630565c6ae2cfeea1fc79cc0882eb Mon Sep 17 00:00:00 2001 From: William Ball Date: Mon, 10 Aug 2020 09:41:16 -0700 Subject: [PATCH] added README --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d1f8aa6 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Code from the Polymath REU Walking to Infinity on Special Sequences project + +The code is organized by language so that people who knew different programming +languages would still be able to test out sequences, since the tree system I +came up with for checking every possible path of a sequence is so versatile. +Each language has an implementation of the tree system as well as a sample and a +template, so you can easily try out any sequence you want. Rust was primarily +used for the hefty calculations involving things other than the tree system, +since it is so fast and easy to use. All the tree code is well documented and +commented, and the fast code is not, but fairly straightforward.