beef868354b62c599dceb2a29558ed19f077ef4d,framework/PostProcessors/ParetoFrontierPostProcessor.py,ParetoFrontier,getInputSpecification,#Any#,38

Before Change


    
    inputSpecification = super(ParetoFrontier, cls).getInputSpecification()
    inputSpecification.addSub(InputData.parameterInputFactory("costID" , contentType=InputTypes.StringType))
    inputSpecification.addSub(InputData.parameterInputFactory("valueID", contentType=InputTypes.StringType))
    return inputSpecification

  def _localReadMoreXML(self, xmlNode):
    

After Change


    inputSpecification = super(ParetoFrontier, cls).getInputSpecification()

    costIDInput = InputData.parameterInputFactory("costID", contentType=InputTypes.StringType)
    costIDInput.addParam("inv", InputTypes.BoolType, True)
    inputSpecification.addSub(costIDInput)

    valueIDInput = InputData.parameterInputFactory("valueID", contentType=InputTypes.StringType)
    valueIDInput.addParam("inv", InputTypes.BoolType, True)
    inputSpecification.addSub(valueIDInput)

    costLimitInput = InputData.parameterInputFactory("costLimit", contentType=InputTypes.FloatType)
    costLimitInput.addParam("type", InputTypes.StringType, True)
    inputSpecification.addSub(costLimitInput)

    valueLimitInput = InputData.parameterInputFactory("valueLimit", contentType=InputTypes.FloatType)
    valueLimitInput.addParam("type", InputTypes.StringType, True)
    inputSpecification.addSub(valueLimitInput)

    return inputSpecification

  def _localReadMoreXML(self, xmlNode):
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 10

Instances


Project Name: idaholab/raven
Commit Name: beef868354b62c599dceb2a29558ed19f077ef4d
Time: 2020-07-29
Author: diego.mandelli@inl.gov
File Name: framework/PostProcessors/ParetoFrontierPostProcessor.py
Class Name: ParetoFrontier
Method Name: getInputSpecification


Project Name: idaholab/raven
Commit Name: 5c509111b8356adc8c0f9966f8f990a3a5e80cf1
Time: 2021-01-13
Author: congjian.wang@inl.gov
File Name: framework/Samplers/MCMC/MCMC.py
Class Name: MCMC
Method Name: getInputSpecification


Project Name: idaholab/raven
Commit Name: beef868354b62c599dceb2a29558ed19f077ef4d
Time: 2020-07-29
Author: diego.mandelli@inl.gov
File Name: framework/PostProcessors/ParetoFrontierPostProcessor.py
Class Name: ParetoFrontier
Method Name: getInputSpecification


Project Name: idaholab/raven
Commit Name: b0fe385e1090ee95946c67d263105d3608635c54
Time: 2020-06-03
Author: Jia.Zhou@inl.gov
File Name: framework/Optimizers/Optimizer.py
Class Name: Optimizer
Method Name: getInputSpecification