Skip to content
Snippets Groups Projects
Commit 4998e771 authored by Stefano Borini's avatar Stefano Borini
Browse files

Updated test_csv.json

parent 68cec51e
No related branches found
No related tags found
1 merge request!45Added support for MCO named parameters.
......@@ -26,7 +26,8 @@ def all_core_factories():
"""Produces a list of all factories contained in this module."""
import inspect
return [c() for c in inspect.getmodule(all_core_factories).__dict__.values()
return [c()
for c in inspect.getmodule(all_core_factories).__dict__.values()
if inspect.isclass(c) and
c is not BaseMCOParameterFactory and
issubclass(c, BaseMCOParameterFactory)]
......@@ -4,7 +4,13 @@
"multi_criteria_optimizer": {
"id": "force.bdss.bundle.enthought.dakota",
"model_data": {
"parameters" : []
"parameters" : [
{
"id": "force.bdss.mco_parameter.enthought.ranged",
"model_data": {
}
}
]
}
},
"data_sources": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment