当前位置: 首页>>代码示例>>Python>>正文


Python Analyzer.getFunctionResults方法代码示例

本文整理汇总了Python中Analyzer.Analyzer.getFunctionResults方法的典型用法代码示例。如果您正苦于以下问题:Python Analyzer.getFunctionResults方法的具体用法?Python Analyzer.getFunctionResults怎么用?Python Analyzer.getFunctionResults使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Analyzer.Analyzer的用法示例。


在下文中一共展示了Analyzer.getFunctionResults方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: MainWindow

# 需要导入模块: from Analyzer import Analyzer [as 别名]
# 或者: from Analyzer.Analyzer import getFunctionResults [as 别名]

#.........这里部分代码省略.........
                os.remove(filename)
            except:
                print >>sys.stderr, "Couldn't delete temporal file: %s" % filename

    def _getSelectedResultNames(self):
        resultNames = []
        for i in xrange(self.analyzer.nResults):
            implementationItem = self.solutionSelector.layout().itemAt(i).widget()
            if implementationItem.isChecked():
                resultNames.append(str(implementationItem.text()))
        return resultNames

    def exportAllImages(self):
        settings = QSettings()
        directory = settings.value(MainWindow.__PREF_SAVE_ALL__).toString()
        directory = QFileDialog.getExistingDirectory(self, "Select a directory to export to", directory)
        if directory is None or not os.path.exists(directory):
            return

        self.analyzer.exportAllImages(directory, self._getSelectedResultNames())
        settings.setValue(MainWindow.__PREF_SAVEL_ALL__, QVariant(directory))
        self.statusBar().showMessage("Images saved!", 5000)

    def computeMetricsAsync(self):
        self.statusBar().showMessage("Computing metrics...")
        QTimer.singleShot(0, self.computeMetrics)

    def computeMetrics(self):
        self._computeMetrics(self.currentSolution.functionName)
        self.statusBar().showMessage("Metrics computed!", 5000)

    def _computeMetrics(self, functionName):
        pareto = self.analyzer.getFunctionPareto(functionName)
        solutions = self.analyzer.getFunctionResults(functionName, self._getSelectedResultNames())
        self.metrics.updateMetrics(pareto, solutions, functionName)

    def helpAbout(self):
        QMessageBox.about(
            self,
            "About Image Changer",
            """<b>Multi-Objective Optimization Interface</b> v%s
            <p>Copyright &copy; 2011-2012 %s All rights reserved.
            <p>This application can be used to perform simple optimization analysis.
            <p><a href='%s'>%s</a>
            <p>Python %s - Qt %s - PyQt %s on %s"""
            % (
                __VERSION__,
                __AUTHOR__,
                __WEBSITE__,
                __WEBSITE__,
                platform.python_version(),
                QT_VERSION_STR,
                PYQT_VERSION_STR,
                platform.system(),
            ),
        )

    def addImplementation(self):
        if self.analyzer.nResults == 0:
            directory = ""
        else:
            directory = os.path.abspath(os.path.join(str(self.analyzer.resultDirectories[-1]), os.path.pardir))
        directory = QFileDialog.getExistingDirectory(
            self, "Select a directory to scan", directory, QFileDialog.ShowDirsOnly
        )
        if not os.path.exists(directory) or directory in self.analyzer.resultDirectories:
开发者ID:wkoder,项目名称:mooi,代码行数:70,代码来源:UI.py


注:本文中的Analyzer.Analyzer.getFunctionResults方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。