13f2ef70e8cb3ccedcc2ae3b1ea4843fc37654d3,framework/Models/EnsembleModel.py,EnsembleModel,collectOutput,#EnsembleModel#Any#Any#,396

Before Change


      @ In, output, "DataObjects" object, output where the results of the calculation needs to be stored
      @ Out, None
    
    if finishedJob.getEvaluation() == -1:
      self.raiseAnError(RuntimeError,"Job " + finishedJob.identifier +" failed!")
    out = finishedJob.getEvaluation()[1]
    exportDict = {"inputSpaceParams":{},"outputSpaceParams":{},"metadata":{}}
    exportDictTargetEvaluation = {}
    outcomes, targetEvaluations, optionalOutputs = out
    try:

After Change


      @ In, output, "DataObjects" object, output where the results of the calculation needs to be stored
      @ Out, None
    
    evaluation = finishedJob.getEvaluation()
    if isinstance(evaluation, Runners.Error):
      self.raiseAnError(RuntimeError,"Job " + finishedJob.identifier +" failed!")

    out = evaluation[1]
    exportDict = {"inputSpaceParams":{},"outputSpaceParams":{},"metadata":{}}
    exportDictTargetEvaluation = {}
    outcomes, targetEvaluations, optionalOutputs = out
    try:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 11

Instances


Project Name: idaholab/raven
Commit Name: 13f2ef70e8cb3ccedcc2ae3b1ea4843fc37654d3
Time: 2017-05-22
Author: andrea.alfonsi@inl.gov
File Name: framework/Models/EnsembleModel.py
Class Name: EnsembleModel
Method Name: collectOutput


Project Name: idaholab/raven
Commit Name: 13f2ef70e8cb3ccedcc2ae3b1ea4843fc37654d3
Time: 2017-05-22
Author: andrea.alfonsi@inl.gov
File Name: framework/Models/EnsembleModel.py
Class Name: EnsembleModel
Method Name: collectOutput


Project Name: idaholab/raven
Commit Name: 1c53a21f233d58f17faa423f11ba793b77476ebe
Time: 2017-05-22
Author: andrea.alfonsi@inl.gov
File Name: framework/Models/EnsembleModel.py
Class Name: EnsembleModel
Method Name: collectOutput


Project Name: idaholab/raven
Commit Name: 00553dec7199d515567c81bc7b0b9b91740b99d6
Time: 2017-09-06
Author: congjian.wang@inl.gov
File Name: framework/PostProcessors/RavenOutput.py
Class Name: RavenOutput
Method Name: collectOutput