aboutsummaryrefslogtreecommitdiff
path: root/source/00_content/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
commiteb28fe84b4a139d5937eb1b9e96cd6220a59eb58 (patch)
treebaff3fb86b4291deb985c977734d60fc2971e301 /source/00_content/pages/projects/simple_parser.md
parentd669cccd2dc665ea344b0087152f524e588f78ef (diff)
downloadblog.kummerlaender.eu-eb28fe84b4a139d5937eb1b9e96cd6220a59eb58.tar
blog.kummerlaender.eu-eb28fe84b4a139d5937eb1b9e96cd6220a59eb58.tar.gz
blog.kummerlaender.eu-eb28fe84b4a139d5937eb1b9e96cd6220a59eb58.tar.bz2
blog.kummerlaender.eu-eb28fe84b4a139d5937eb1b9e96cd6220a59eb58.tar.lz
blog.kummerlaender.eu-eb28fe84b4a139d5937eb1b9e96cd6220a59eb58.tar.xz
blog.kummerlaender.eu-eb28fe84b4a139d5937eb1b9e96cd6220a59eb58.tar.zst
blog.kummerlaender.eu-eb28fe84b4a139d5937eb1b9e96cd6220a59eb58.zip
Somewhat fleshed out the project pages
* e.g. linked Github and cgit repositories
Diffstat (limited to 'source/00_content/pages/projects/simple_parser.md')
-rw-r--r--source/00_content/pages/projects/simple_parser.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/00_content/pages/projects/simple_parser.md b/source/00_content/pages/projects/simple_parser.md
index e6b8f25..4ceb226 100644
--- a/source/00_content/pages/projects/simple_parser.md
+++ b/source/00_content/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/