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-04-08 | Remove unused prolog.util.normalized | Timotej Lazar | |
2016-04-08 | Fix monkey.test to match monkey.edits updates | Timotej Lazar | |
2016-03-03 | Remove unused variable | Timotej Lazar | |
2016-03-02 | Improve hints returned by monkey.fix_hints | Timotej Lazar | |
2016-03-02 | Parse 'experiment' actions | Timotej Lazar | |
2016-02-25 | Update monkey.action parser | Timotej Lazar | |
2016-02-11 | monkey.utils.PQueue: fix size tracking | Timotej Lazar | |
2016-02-11 | monkey.edits: ignore edits that insert too much | 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-02-09 | Fix test function call in monkey.edits | Timotej Lazar | |
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-10 | Add each edit at most once per solution | Timotej Lazar | |
2016-01-10 | Avoid a potential division by zero | Timotej Lazar | |
2016-01-06 | Update and fix monkey.test | Timotej Lazar | |
2016-01-06 | Remove unused imports | Timotej Lazar | |
2016-01-06 | Remove unused monkey.graph (replaced by nltk.Tree) | Timotej Lazar | |
2016-01-05 | monkey.edits: cache test results | Timotej Lazar | |
2016-01-05 | monkey.edits: only add solutions to predicates that are actually used when ↵ | Timotej Lazar | |
testing | |||
2016-01-04 | Fix: use correct action types in monkey.edits | Timotej Lazar | |
2015-12-23 | Prolog: pass aux. code to problem's test function | Timotej Lazar | |
This allows us to simplify individual problem test functions. | |||
2015-12-22 | Fix off-by-one when extracting edits | Timotej Lazar | |
2015-12-22 | Remove a stray "pass" | Timotej Lazar | |
2015-12-21 | Support all action types in monkey.action | Timotej Lazar | |
2015-12-21 | Fix printing edits in monkey.test | Timotej Lazar | |
2015-12-11 | Rename a function | 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 | Remove unused monkey.action.compress | Timotej Lazar | |
2015-12-10 | Remove trace-graph function from monkey.test | Timotej Lazar | |
2015-12-10 | Add copyright info | Timotej Lazar | |
2015-11-04 | Use correct type for prolog_solve action | Timotej Lazar | |
2015-10-15 | Store identifiers instead of IDs in Problem model | Timotej Lazar | |
2015-10-13 | Move monkey/monkey.py to monkey/__init__.py | Timotej Lazar | |
2015-10-13 | Remove unused code from monkey.action | Timotej Lazar | |
2015-10-13 | Fix: add a missing comma | Timotej Lazar | |
2015-10-05 | Update actions | Timotej Lazar | |
2015-09-24 | Update monkey.test.test for new testing functions | Timotej Lazar | |
2015-09-24 | Remove trailing . from historical Prolog queries | Timotej Lazar | |
2015-09-22 | Add Node.subtrees and Node.leaves functions | Timotej Lazar | |
2015-09-02 | Update monkey.test to work with new DB | Timotej Lazar | |
2015-09-02 | Accept test function as a parameter to monkey.fix | Timotej Lazar | |
2015-08-27 | Replace prolog.engine.run with ask_all | Timotej Lazar | |
Creating and destroying the pengine should be handled somewhere else. This commit also removes query functionality from prolog.engine.create. | |||
2015-08-24 | Remove in-edges from monkey.graph.Node class | Timotej Lazar | |
2015-08-24 | monkey.graph.graphviz: fix escaping of node labels | Timotej Lazar | |
2015-08-24 | monkey.graph.graphviz: use id() to reference nodes | Timotej Lazar | |
2015-08-20 | Convert monkey.edits to use the new DB | Timotej Lazar | |
2015-08-20 | Remove unneeded DB init stuff from monkey.action | Timotej Lazar | |