aboutsummaryrefslogtreecommitdiff
path: root/pages/projects/simple_parser.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-08-12 16:45:23 +0200
committerAdrian Kummerlaender2014-08-12 16:45:23 +0200
commit90573e5baa9d7eb2a132454dd0fccd65e5c43748 (patch)
tree1d96c58176f836850ab51a19d1c975f2782f9bfd /pages/projects/simple_parser.md
parent11fa38f48883bb45cf592bee09c7c70e0d898e63 (diff)
downloadblog_content-90573e5baa9d7eb2a132454dd0fccd65e5c43748.tar
blog_content-90573e5baa9d7eb2a132454dd0fccd65e5c43748.tar.gz
blog_content-90573e5baa9d7eb2a132454dd0fccd65e5c43748.tar.bz2
blog_content-90573e5baa9d7eb2a132454dd0fccd65e5c43748.tar.lz
blog_content-90573e5baa9d7eb2a132454dd0fccd65e5c43748.tar.xz
blog_content-90573e5baa9d7eb2a132454dd0fccd65e5c43748.tar.zst
blog_content-90573e5baa9d7eb2a132454dd0fccd65e5c43748.zip
Somewhat fleshed out the project pages
* e.g. linked Github and cgit repositories
Diffstat (limited to 'pages/projects/simple_parser.md')
-rw-r--r--pages/projects/simple_parser.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/pages/projects/simple_parser.md b/pages/projects/simple_parser.md
index e6b8f25..4ceb226 100644
--- a/pages/projects/simple_parser.md
+++ b/pages/projects/simple_parser.md
@@ -3,3 +3,16 @@
…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/