aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-12Add reproducible dev-env and Nix derivation of the latest releaseHEADmasterAdrian Kummerlaender
2018-05-12Link pthreadAdrian Kummerlaender
2018-02-02Replace boost::optional with std::optionalAdrian Kummerlaender
2015-06-10Changed token determination regarding identifier valuesAdrian Kummerlaender
* all non operator and digit tokens are now identifier tokens as this seems more intuitive than generating number token lists containing non-digit values * renamed lexer-local `level` variable to `nesting` as to avoid confusion between nesting state and predecence levels
2014-10-02Moved exception based syntax check into buildTreeAdrian Kummerlaender
* invalid expressions typically cause the operator and operand stacks to become unbalanced ** this in turn causes a operator_exception instance to be thrown as soon as the shunting yard implementation in "buildTree" tries to modify the stack _too far_ ** this is not directly visible from the tree construction implementation * the compilation unit local helper methods "pop" and "top" now return "boost::optional<Node*>" instances ** this enables the operator placement errors to be handled where they occur * as a side effect children assignment is now more obvious through correctly named variables * added missing default initialization in lexer implementation
2014-10-01Moved child pointers to OperatorNode classAdrian Kummerlaender
* access was restricted by declaring them private and offering member methods such as "hasChildren" * only OperatorNode instances have children, there is no reason for wasting space by keeping empty pointers around in all other instances * this enabled the removal of all nullptr comparisons from tree construction * changed "Tree::addNode" factory method template to return a pointer to the type of the constructed node instance instead of a plain node pointer
2014-09-27Added argument and tree export mode to frontendAdrian Kummerlaender
* arguments are managed through boost::program_options * default continues to be the REPL * "--tree" argument switches from calculation to tree export * "--input" may be used to pass terms to be evaluated via CLI arguments ** disables REPL
2014-09-27Removed line breaks from `dot` export and fixed naming errorAdrian Kummerlaender
* "doubleToString" converts a string to double, i.e. it should be named "stringToDouble"…
2014-09-26Replaced array-like accesses with their named member method counterpartsAdrian Kummerlaender
2014-09-26Eliminated manual division through zero preventionAdrian Kummerlaender
* while integer division through zero is obviously a low level error that should be prevented, this operation is well-defined for floating point values as used by SimpleParser
2014-09-26Simplified Tree::addNode and continued cleanupAdrian Kummerlaender
* member method "addNode" of "Tree" was relieved of its uneccessary "place" argument * again contified where possible ** e.g. the "buildTree" local element vectors for storing the lexer result
2014-09-25Increased tree constness and added constructor aliasesAdrian Kummerlaender
* as with all Node classes the public member methods of the "Tree" class do not need to be non-const * both constructors are more easily expressed as aliases of a single constructor that takes both the term and a pointer to a constant map instance * the tree is now constructed during member initialization
2014-09-25Declared "{top|pop}Node" helper methods local to their compilation unitAdrian Kummerlaender
* there is no reason for exposing them to be potentially linked to from other compilation units
2014-09-25Increased Node constness and removed type member methodAdrian Kummerlaender
* marked "solve" and "print" implementations as const * converted member variables into constants where possible * "type" member method is not necessary and partially defeats the purpose of declaring virtual members
2014-09-16Improved lexer readabilty and replaced raw new in tree constructionAdrian Kummerlaender
* "new" in Tree::addNode member method was replaced with C++14 std::make_unique * renamed and constified lexer local variables to increase readabilty ** replaced chunky if-clauses with switch-clauses where appropriate * updated README.md to mention C++14 requirement
2014-03-04Did some refactoring to improve readabilityAdrian Kummerländer
* now using range for-loops during Tree printing * inroduced popNode helper method which helps to simplify the Tree construction implementation
2014-03-02Switched build system to cmakeAdrian Kummerländer
* cmake offers a more straight forward and easier understandable way of building this project
2013-10-29Added previously missing parser.ccAdrian Kummerländer
2013-10-20Modified README to match recently added featuresAdrian Kummerländer
2013-10-20Implemented constant identifier functionalityAdrian Kummerländer
* SimpleParser optionally acceps a pointer to an ConstantMap containing string keys mapping to values * Constants are handled in their own ConstantNode class derived from the standard Node class * Operator precedence is now determined separated from the TokenType using a new PrecedenceLevel enum ** Conversion between tokens and their PrecedenceLevel is possible using the new utility function getPrecedence * Added additional test cases for constant identifier resolutions
2013-10-20Enabled C++11 for clc and test applicationsAdrian Kummerländer
2013-10-19Merged Node factory-methods into template methodAdrian Kummerländer
Added ConstantNode blueprint
2013-10-19Switched OperatorNode to TokenTypeAdrian Kummerländer
* OperatorNode class now uses TokenType for internal operator storage and logic selection * print-Method resolves the TokenType back into its character representation
2013-10-19Merge branch 'master' into feature_constantsAdrian Kummerländer
Conflicts: src/tree.cc src/utils.cc
2013-10-19Improvement: Replaced "priority" with TokenTypeAdrian Kummerländer
* Made implementation more expressive by replacing the integer priority with an strictly typed enum called TokenType ** Made removal of character comparisons from tree construction and lexer possible * As a side effect distinct numbers had to be assigned to each token ** Operators of same priority do not have identical numbers anymore
2013-10-19POC: alphabetic constantsAdrian Kummerländer
* New priority for alphabetic characters * Overloaded OperandNode constructor * Currently not usable, only basic proof of concept
2013-10-19Fixed undefined behavior of tree constructionAdrian Kummerländer
* Invalid input syntax led to undefined behavior when accessing the top element of an empty stack ** Fixed by introducing a new "topNodeFrom" function which throws an exeption in the case that the given std::stack reference is empty
2013-10-19Added simple input loop to clcAdrian Kummerländer
2013-09-27Modified Makefile to generate shared libraryAdrian Kummerländer
* library is called libSimpleParser.so * parser was renamed to clc * test and clc are using the shared library
2013-09-26Code restructuring of tree and parsing logicAdrian Kummerländer
* Enabled tree to generate itself ** Main work is now done during tree construction * Moved lexer and getPriority utility functions into separate compilation unit
2013-07-29Coding style improvementsAdrian Kummerländer
2013-07-28Added MIT licenseAdrian Kummerländer
2013-01-11Included previously missing exceptions headerAdrian Kummerländer
2013-01-06Added a basic readme fileAdrian Kummerländer
2013-01-05Made existing Graphviz tree generation availableAdrian Kummerländer
to the libary user by providing a new plain "exportTree" function
2013-01-05Deprecated parser class in favour of plain functions; Internal lexer,Adrian Kummerländer
priority determination and tree building functions were hidden in unnamed namespace
2013-01-05Moved node classes into separate compilation unit; File extension changeAdrian Kummerländer
2013-01-05Folder structure change; Further improvements of parser codeAdrian Kummerländer
2013-01-05Fixes for ugly style used in my early C++ daysAdrian Kummerländer
2012-10-12Added gtest based test cases to be executed after every compileAdrian Kummerländer
2012-04-22Fixed a bug which was preventing the lexer from working correctlyAdrian Kummerländer
2012-04-15Removed all memory leaks detected by valgrindAdrian Kummerländer
2012-04-14Updated MakefileAdrian Kummerländer
2012-03-10Enabled full precision output of resultsAdrian Kummerländer
2012-03-10Moved static_cast needed for accessing the specific solve methods of the two ↵Adrian Kummerländer
derivatives of Node into a template function
2012-03-04Got rid of boost dependencyAdrian Kummerländer
2011-11-20Added support for signed numbersAdrian Kummerländer
2011-11-18Inital commitAdrian Kummerländer