aboutsummaryrefslogtreecommitdiff
path: root/pages/projects/simple_parser.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2017-02-12 15:14:05 +0100
committerAdrian Kummerlaender2017-02-12 15:14:05 +0100
commitdba73e412dd837db09028ad1bdb2ddb5f199f1b9 (patch)
treef305c366d216e616477b8dadb8f384b823c2bedd /pages/projects/simple_parser.md
parentba67ed08aba047795c0dd653de718d5333fd7a5d (diff)
downloadblog_content-dba73e412dd837db09028ad1bdb2ddb5f199f1b9.tar
blog_content-dba73e412dd837db09028ad1bdb2ddb5f199f1b9.tar.gz
blog_content-dba73e412dd837db09028ad1bdb2ddb5f199f1b9.tar.bz2
blog_content-dba73e412dd837db09028ad1bdb2ddb5f199f1b9.tar.lz
blog_content-dba73e412dd837db09028ad1bdb2ddb5f199f1b9.tar.xz
blog_content-dba73e412dd837db09028ad1bdb2ddb5f199f1b9.tar.zst
blog_content-dba73e412dd837db09028ad1bdb2ddb5f199f1b9.zip
Remove page, category functionality as it is now provided by `tree.kummerlaender.eu`
Diffstat (limited to 'pages/projects/simple_parser.md')
-rw-r--r--pages/projects/simple_parser.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/pages/projects/simple_parser.md b/pages/projects/simple_parser.md
deleted file mode 100644
index 0f3f320..0000000
--- a/pages/projects/simple_parser.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# SimpleParser
-
-…is a simple parser for resolving mathematical terms.
-
-The term is parsed by generating a binary expression tree using the [Shunting-Yard] algorithm. The implementation itself does not use any external libraries and relies fully on the features provided by the C++ language and the standard library.
-
-This application marks the first steps in C++ I took a couple of years back and is available on [Github] or [cgit].
-
-## Current features
-
-* Calculating terms with basic operators while respecting the priority of each operator
-* Support for parentheses
-* Support for alphabetic constants
-* Export of the expression tree as [Graphviz] `dot` for visualization
-
-## Visualization
-
-The ability to export the internal binary expression tree resulting from the parsed term as [Graphviz] `dot` is useful for both visualization and debugging purposes. In the following image you can see the depiction of the tree resulting from the arbitrarily chosen term `2.5*(2+3-(3/2+1*(21+11+(5*2))))`:
-
-![Visualization of the parsed tree using Graphviz](https://static.kummerlaender.eu/media/parser_tree.png)
-
-[Graphviz]: http://www.graphviz.org/
-[Github]: https://github.com/KnairdA/SimpleParser/
-[cgit]: http://code.kummerlaender.eu/SimpleParser/
-[Shunting-Yard]: http://en.wikipedia.org/wiki/Shunting-yard_algorithm