Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-22 | Fix: previous commit | Timotej Lazar | |
Oops. | |||
2016-04-19 | Fix: correctly parse difflib.SequenceMatcher output | Timotej Lazar | |
2016-03-02 | Improve hints returned by monkey.fix_hints | Timotej Lazar | |
2016-02-10 | monkey: modify cutoff for adding candidate programs to the queue | Timotej Lazar | |
Queue size is not a problem since the switch to AST-based edits. | |||
2016-01-12 | Replace prolog.util.rename_vars with rename_vars_list everywhere | Timotej Lazar | |
2016-01-12 | Get number of passed/total tests from Prolog test functions | Timotej Lazar | |
2016-01-11 | For each edit remember the user ids where it was seen | Timotej Lazar | |
2016-01-06 | Remove unused imports | Timotej Lazar | |
2015-12-11 | Use a more general method for extracting edits | Timotej Lazar | |
This is a large overhaul of monkey code. Before, only edits within individual lines were tracked, which required a Prolog-specific method for splitting a program into a list of lines for every rule. In this version, modifications can be tracked within arbitrary code ranges. Ranges to be tracked are determined by selecting "interesting" subtrees in the AST of the starting code version. The new method is simpler, less language-dependent and easier to extend. The downside is that a program must be syntactically correct before we can attempt to fix it (the previous approach could handle programs with syntax errors in some cases). This commit also integrates a call to monkey.fix in prolog_session.hint, by running it if no other hint is found. | |||
2015-12-10 | Add copyright info | Timotej Lazar | |
2015-10-13 | Move monkey/monkey.py to monkey/__init__.py | Timotej Lazar | |