b17696d0db6e407f86e92f077ecdec47a0bdf62f,tgen/planner.py,ASearchPlanner,run,#ASearchPlanner#Any#Any#Any#Any#,255

Before Change


            // log_debug("   CLOSE: %s" % str(close_list))
            cand, score = open_list.pop()
            close_list.push(cand, score[1])  // only use score without future promise
            log_debug("--- IT %05d: [O: %5d C: %5d]" % (num_iter, len(open_list), len(close_list)))
            log_debug("              [S:   %8.4f    ] %s" % (score[1], unicode(cand)))
            successors = self.candgen.get_all_successors(cand, cdfs, node_limits)
            // add candidates with score (negative for the min-heap)
            for succ in successors:

After Change


        if not max_iter:
            max_iter = self.max_iter

        log_debug("Gen tree for DA: %s" % unicode(da))

        // main search loop
        while open_list and num_iter < max_iter and (max_defic_iter is None
                                                     or defic_iter <= max_defic_iter):
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: UFAL-DSG/tgen
Commit Name: b17696d0db6e407f86e92f077ecdec47a0bdf62f
Time: 2015-01-30
Author: odusek@ufal.mff.cuni.cz
File Name: tgen/planner.py
Class Name: ASearchPlanner
Method Name: run


Project Name: UFAL-DSG/tgen
Commit Name: ef4b6aebffc902a2f4f8b3232fe2ee7e77b6dd9f
Time: 2015-11-13
Author: odusek@ufal.mff.cuni.cz
File Name: tgen/classif.py
Class Name: TreeClassifier
Method Name: _training_pass


Project Name: UFAL-DSG/tgen
Commit Name: 8ea6f4e142a345881dc45df5269261e1737a946a
Time: 2015-11-13
Author: odusek@ufal.mff.cuni.cz
File Name: tgen/classif.py
Class Name: TreeClassifier
Method Name: _training_pass