diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -1,6 +1,10 @@ ### Markov Chains -This is a simple implementation of markov chains +This is a simple implementation of markov chains. +An example chain could be generated with bin/gen_chain. +The main program expect a file specified in src/main.c (default is files/in.txt). +The program generates a markov chain using the file. +Output and other things can be tweaked with the macros in the files. ### Build @@ -10,3 +14,13 @@ to build and run use ``` ./build.sh run ``` See the build.sh file for more info + +### Limitations + +Limitations of the output: +1. No upper case letters (who needs them anyway) +2. No proper punctuation (who needs punctuation anyway), just words + +Limitations of processing input: +1. The symbols: `[]"",` are completely ignored, +`.` and `\n` are used to identify end of thought (sentance) |