aboutsummaryrefslogtreecommitdiff
path: root/source/00_content/pages/projects/simple_parser.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-09-11 13:06:53 +0200
committerAdrian Kummerlaender2014-09-11 13:06:53 +0200
commitded69be933abdb3ff69e3bf1991586a70fd13d63 (patch)
tree228e630c312eaab4fb80d312e2a52d0b588eabe7 /source/00_content/pages/projects/simple_parser.md
parent1b4253c36a59ddb9a1530c2ce9898ff18f5a3d31 (diff)
downloadblog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar.gz
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar.bz2
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar.lz
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar.xz
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.tar.zst
blog.kummerlaender.eu-ded69be933abdb3ff69e3bf1991586a70fd13d63.zip
Removed contents as they were relocated into their own repository
Diffstat (limited to 'source/00_content/pages/projects/simple_parser.md')
-rw-r--r--source/00_content/pages/projects/simple_parser.md18
1 files changed, 0 insertions, 18 deletions
diff --git a/source/00_content/pages/projects/simple_parser.md b/source/00_content/pages/projects/simple_parser.md
deleted file mode 100644
index ea4df53..0000000
--- a/source/00_content/pages/projects/simple_parser.md
+++ /dev/null
@@ -1,18 +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
-
-[Graphviz]: http://www.graphviz.org/
-[Github]: https://github.com/KnairdA/SimpleParser
-[cgit]: http://code.kummerlaender.eu/SimpleParser/