Commit a780301b authored by Ioannis Papagiannopoulos's avatar Ioannis Papagiannopoulos Committed by Georgios Dagkakis

new and old partjobshop instance updated

parent c6ceb184
{ {
"class_definition" : { "class_definition" : {
"definitions" : { "definitions" : {
"distributionTypes" : { "distributionTypes": {
"_fixed" : { "_binomial": {
"description" : "Fixed", "description": "Binomial",
"title" : "Fixed", "properties": {
"type" : "object", "mean": {
"properties" : { "default": 0,
"mean" : { "type": "number"
"type" : "number",
"default" : 0.75,
"required" : true
}
}
},
"_exp" : {
"type" : "object",
"title": "Exp",
"description" : "Exponential",
"properties" : {
"mean" : {
"type" : "number",
"default" : 0,
"required" : true
}
}
},
"_normal" : {
"type" : "object",
"title" : "Normal",
"description" : "Normal",
"properties" : {
"mean" : {
"type" : "number",
"default" : 0,
"required" : true
}, },
"stdev" : { "size": {
"type" : "number", "default": 0,
"default" : 0, "type": "number"
"required" : true
} }
} },
"title": "Binomial",
"type": "object"
}, },
"_lognormal" : { "_cauchy": {
"type" : "object", "description": "Cauchy",
"title" : "Lognormal", "properties": {
"description" : "Lognormal", "location": {
"properties" : { "default": 0,
"mean" : { "type": "number"
"_class" : "Dream.Property",
"name" : "Mean",
"type" : "number",
"default" : 0
}, },
"stdev" : { "scale": {
"_class" : "Dream.Property", "default": 0,
"name" : "Standard Deviation", "type": "number"
"type" : "number",
"default" : 0
} }
} },
"title": "Cauchy",
"type": "object"
}, },
"_binomial" : { "_exp": {
"type" : "object", "description": "Exponential",
"title" : "Binomial", "properties": {
"description" : "Binomial", "mean": {
"properties" : { "default": 0,
"mean" : { "required": true,
"type" : "number", "type": "number"
"default" : 0
},
"size" : {
"type" : "number",
"default" : 0
} }
} },
"title": "Exp",
"type": "object"
}, },
"_poisson" : { "_failure": {
"type" : "object", "properties": {
"title" : "Poisson", "Time to Failure": {
"description" : "Poisson", "$ref": "#/definitions/_dist"
"properties" : { },
"lambda" : { "Time to Repair": {
"type" : "number", "$ref": "#/definitions/_dist"
"default" : 0 },
"repairman": {
"description": "Repairman",
"required": true,
"type": "string"
} }
} },
"title": "Yes",
"type": "object"
}, },
"_logistic" : { "_fixed": {
"type" : "object", "title": "Fixed",
"title" : "Logistic", "properties": {
"description" : "Logistic", "mean": {
"properties" : { "default": 0,
"location" : { "required": true,
"type" : "number", "type": "number"
"default" : 0,
"required" : true
},
"scale" : {
"type" : "number",
"default" : 0,
"required" : true
} }
} },
"type": "object"
}, },
"_caucy" : { "_gama": {
"type" : "object", "description": "Gama",
"title" : "Caucy", "properties": {
"description" : "Caucy", "rate": {
"properties" : { "default": 0,
"location" : { "required": true,
"type" : "number", "type": "number"
"default" : 0
}, },
"scale" : { "shape": {
"type" : "number", "default": 0,
"default" : 0 "required": true,
"type": "number"
} }
} },
"title": "Gama",
"type": "object"
}, },
"_geometric" : { "_geometric": {
"type" : "object", "description": "Geometric",
"title" : "Geometric", "properties": {
"description" : "Geometric", "probability": {
"properties" : { "default": 0,
"probability" : { "required": true,
"type" : "number", "type": "number"
"default" : 0,
"required" : true
} }
} },
"title": "Geometric",
"type": "object"
}, },
"_gama" : { "_logistic": {
"type" : "object", "description": "Logistic",
"title" : "Gama", "properties": {
"description" : "Gama", "location": {
"properties" : { "default": 0,
"shape" : { "required": true,
"type" : "number", "type": "number"
"default" : 0,
"required" : true
}, },
"rate" : { "scale": {
"type" : "number", "default": 0,
"default" : 0, "required": true,
"required" : true "type": "number"
} }
} },
"title": "Logistic",
"type": "object"
}, },
"_weibull" : { "_lognormal": {
"type" : "object", "description": "Lognormal",
"title" : "Weibull", "properties": {
"description" : "Weibull", "mean": {
"properties" : { "default": 0,
"shape" : { "name": "Mean",
"type" : "number", "type": "number"
"default" : 0,
"required" : true
}, },
"scale" : { "stdev": {
"type" : "number", "default": 0,
"default" : 0, "name": "Standard Deviation",
"required" : true "type": "number"
} }
} },
"title": "Lognormal",
"type": "object"
}, },
"_fixedFailure" : { "_no": {
"type" : "object", "description": "None",
"title" : "Fixed", "title": "No",
"description" : "Fixed", "type": "string"
"properties" : { },
"MTTF" : { "_normal": {
"description" : "Mean Time To Failure", "description": "Normal",
"type" : "number", "properties": {
"default" : 40, "mean": {
"required" : true "default": 0,
}, "required": true,
"MTTR" : { "type": "number"
"description" : "Mean Time To Repair",
"type" : "number",
"default" : 10,
"required" : true
}, },
"repairman" : { "stdev": {
"description" : "Repairman", "default": 0,
"type" : "string", "required": true,
"required" : true "type": "number"
} }
} },
"title": "Normal",
"type": "object"
}, },
"_no" : { "_poisson": {
"type" : "string", "description": "Poisson",
"title" : "No", "properties": {
"description" : "None" "lambda": {
"default": 0,
"type": "number"
}
},
"title": "Poisson",
"type": "object"
}, },
"_availability" : { "_weibull": {
"type" : "object", "description": "Weibull",
"title" : "Availability", "properties": {
"description" : "Availability", "scale": {
"properties" : { "default": 0,
"MTTF" : { "required": true,
"description" : "Mean Time To Failure", "type": "number"
"type" : "number",
"default" : 40,
"required" : true
},
"MTTR" : {
"description" : "Mean Time To Failure",
"default" : 10,
"type" : "number",
"required" : true
},
"availability" : {
"type" : "number",
"default" : 0,
"required" : true
}, },
"repairman" : { "shape": {
"description" : "Repairman", "default": 0,
"type" : "string", "required": true,
"required" : true "type": "number"
} }
} },
"title": "Weibull",
"type": "object"
} }
}, },
"_failureDist" : { "_failureDist" : {
...@@ -234,14 +195,13 @@ ...@@ -234,14 +195,13 @@
"default" : "No", "default" : "No",
"enum" : [ "enum" : [
"No", "No",
"Fixed", "Yes"
"Availability"
] ]
} }
} }
}, { }, {
"oneOf" : [{ "oneOf" : [{
"$ref" : "#/definitions/distributionTypes/_fixedFailure" "$ref" : "#/definitions/distributionTypes/_failure"
}, { }, {
"$ref" : "#/definitions/distributionTypes/_no" "$ref" : "#/definitions/distributionTypes/_no"
}, { }, {
...@@ -266,7 +226,7 @@ ...@@ -266,7 +226,7 @@
"Binomial", "Binomial",
"Poisson", "Poisson",
"Logistic", "Logistic",
"Caucy", "Cauchy",
"Geometric", "Geometric",
"Gama", "Gama",
"Weibull" "Weibull"
...@@ -289,7 +249,7 @@ ...@@ -289,7 +249,7 @@
}, { }, {
"$ref" : "#/definitions/distributionTypes/_logistic" "$ref" : "#/definitions/distributionTypes/_logistic"
}, { }, {
"$ref" : "#/definitions/distributionTypes/_caucy" "$ref" : "#/definitions/distributionTypes/_cauchy"
}, { }, {
"$ref" : "#/definitions/distributionTypes/_geometric" "$ref" : "#/definitions/distributionTypes/_geometric"
}, { }, {
...@@ -407,12 +367,11 @@ ...@@ -407,12 +367,11 @@
"_class" : "node", "_class" : "node",
"name" : "Exit", "name" : "Exit",
"description" : "A station where entities exits from the system", "description" : "A station where entities exits from the system",
"css": { "css": {
"border": "1px solid #ccb", "border": "1px solid #ccb",
"backgroundColor": "#eef", "backgroundColor": "#eef",
"backgroundImage": "linear-gradient(to bottom, #eef 0%, #dde 100%)" "backgroundImage": "linear-gradient(to bottom, #eef 0%, #dde 100%)"
}, },
"shape": "rectangle",
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
}, { }, {
...@@ -433,12 +392,12 @@ ...@@ -433,12 +392,12 @@
"Dream.ConditionalBuffer":{ "Dream.ConditionalBuffer":{
"name" : "Cam Queue", "name" : "Cam Queue",
"_class":"node", "_class":"node",
"description" : "A buffer where entities can be hold until the next station is ready to process them and a certain condition is met", "description" : "A buffer where entities can be hold until the next station is ready to process them and a certain condition is met",
"css": { "css": {
"border": "1px solid #bcc", "border": "1px solid #bcc",
"backgroundColor": "#eff", "backgroundColor": "#eff",
"backgroundImage": "linear-gradient(to bottom, #eff 0%, #dee 100%)" "backgroundImage": "linear-gradient(to bottom, #eff 0%, #dee 100%)"
}, },
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
}, { }, {
...@@ -468,11 +427,11 @@ ...@@ -468,11 +427,11 @@
"name":"Assembly Queue", "name":"Assembly Queue",
"_class":"node", "_class":"node",
"description" : "A buffer where entities can be hold until the next assembly is ready to process all the entities from the same production-order", "description" : "A buffer where entities can be hold until the next assembly is ready to process all the entities from the same production-order",
"css": { "css": {
"border": "1px solid #bcc", "border": "1px solid #bcc",
"backgroundColor": "#eff", "backgroundColor": "#eff",
"backgroundImage": "linear-gradient(to bottom, #eff 0%, #dee 100%)" "backgroundImage": "linear-gradient(to bottom, #eff 0%, #dee 100%)"
}, },
"allOf" : [{ "allOf" : [{
"$ref" : "#/Dream.ConditionalBuffer" "$ref" : "#/Dream.ConditionalBuffer"
}, { }, {
...@@ -494,11 +453,11 @@ ...@@ -494,11 +453,11 @@
"name":"Decomposition", "name":"Decomposition",
"_class":"node", "_class":"node",
"description" : "A station where production-orders are decomposed into components ", "description" : "A station where production-orders are decomposed into components ",
"css": { "css": {
"border": "1px solid #bcc", "border": "1px solid #bcc",
"backgroundColor": "#eff", "backgroundColor": "#eff",
"backgroundImage": "linear-gradient(to bottom, #eff 0%, #dee 100%)" "backgroundImage": "linear-gradient(to bottom, #eff 0%, #dee 100%)"
}, },
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
}, { }, {
...@@ -516,11 +475,11 @@ ...@@ -516,11 +475,11 @@
"Dream.MachineJobShop":{ "Dream.MachineJobShop":{
"name" : "Machine", "name" : "Machine",
"description" : "A station processing items for some time given by a distribution provided by the entities that are processed", "description" : "A station processing items for some time given by a distribution provided by the entities that are processed",
"css": { "css": {
"border": "1px solid #cbc", "border": "1px solid #cbc",
"backgroundColor": "#fef", "backgroundColor": "#fef",
"backgroundImage": "linear-gradient(to bottom, #fef 0%, #ede 100%)" "backgroundImage": "linear-gradient(to bottom, #fef 0%, #ede 100%)"
}, },
"_class" : "node", "_class" : "node",
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
...@@ -545,11 +504,11 @@ ...@@ -545,11 +504,11 @@
] ]
}, },
"Dream.MouldAssembly":{ "Dream.MouldAssembly":{
"css": { "css": {
"border": "1px solid #cbc", "border": "1px solid #cbc",
"backgroundColor": "#fef", "backgroundColor": "#fef",
"backgroundImage": "linear-gradient(to bottom, #fef 0%, #ede 100%)" "backgroundImage": "linear-gradient(to bottom, #fef 0%, #ede 100%)"
}, },
"name" : "Assembly", "name" : "Assembly",
"description" : "A station that assembles different components of the same production order into a single entity", "description" : "A station that assembles different components of the same production order into a single entity",
"_class":"node", "_class":"node",
...@@ -567,15 +526,15 @@ ...@@ -567,15 +526,15 @@
} }
] ]
}, },
"Dream.OperatorManagedJob":{ "Dream.Operator":{
"name" : "Operator", "name" : "Operator",
"_class" : "node", "_class" : "node",
"description" : "A resource that operates stations", "description" : "A resource that operates stations",
"css": { "css": {
"border": "1px solid #cbb", "border": "1px solid #cbb",
"backgroundColor": "#fdd", "backgroundColor": "#fdd",
"backgroundImage": "linear-gradient(to bottom, #fdd 0%, #dcc 100%)" "backgroundImage": "linear-gradient(to bottom, #fdd 0%, #dcc 100%)"
}, },
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
}, { }, {
...@@ -607,6 +566,11 @@ ...@@ -607,6 +566,11 @@
"type" : "object_view", "type" : "object_view",
"gadget" : "Input_viewProductionLine" "gadget" : "Input_viewProductionLine"
}, },
"view_management": {
"gadget": "Input_viewDocumentManagement",
"type": "object_view",
"title": "Manage document"
},
"view_production_orders_spreadsheet" : { "view_production_orders_spreadsheet" : {
"gadget" : "Input_viewSpreadsheet", "gadget" : "Input_viewSpreadsheet",
"type" : "object_view", "type" : "object_view",
...@@ -765,6 +729,11 @@ ...@@ -765,6 +729,11 @@
"gadget": "Input_viewResultList", "gadget": "Input_viewResultList",
"type": "object_view", "type": "object_view",
"title": "Results" "title": "Results"
},
"debug": {
"gadget": "Input_viewDebugJson",
"type": "object_view",
"title": "Debug JSON"
} }
}, },
"output" : { "output" : {
...@@ -839,31 +808,27 @@ ...@@ -839,31 +808,27 @@
} }
}, },
"pre_processing" : { "pre_processing" : {
"description" : "",
"plugin_list" : [{ "plugin_list" : [{
"_class" : "dream.plugins.PartJobShop.PartJobShop", "_class" : "PartJobShop",
"input_id" : "Simulation" "input_id" : "Simulation"
}, { }, {
"_class" : "dream.plugins.ReadShiftFromSpreadsheet.ReadShiftFromSpreadsheet", "_class" : "ReadShiftFromSpreadsheet",
"input_id" : "ShiftSpreadsheet" "input_id" : "ShiftSpreadsheet"
}, { }, {
"_class" : "dream.plugins.ReadWipFromSpreadsheet.ReadWipFromSpreadsheet", "_class" : "ReadWipFromSpreadsheet",
"input_id" : "WipSpreadsheet" "input_id" : "WipSpreadsheet"
}, { }, {
"_class" : "dream.plugins.ReadRouteFromSpreadsheet.ReadRouteFromSpreadsheet", "_class" : "ReadRouteFromSpreadsheet",
"input_id" : "RouteSpreadsheet" "input_id" : "RouteSpreadsheet"
} }
] ]
}, },
"processing_plugin" : { "processing_plugin" : {
"description" : "", "_class" : "CalculateConfidenceIntervals"
"_class" : "", },
"input_id" : ""
}
"post_processing" : { "post_processing" : {
"description" : "",
"plugin_list" : [{ "plugin_list" : [{
"_class" : "dream.plugins.CalculateConfidenceIntervals.CalculateConfidenceIntervals" "_class" : "CalculateConfidenceIntervals"
}] }]
}, },
"general" : { "general" : {
......
...@@ -2,227 +2,193 @@ ...@@ -2,227 +2,193 @@
"class_definition": { "class_definition": {
"definitions": { "definitions": {
"distributionTypes": { "distributionTypes": {
"_fixed": { "_binomial": {
"description": "Fixed", "description": "Binomial",
"name": "Fixed",
"type": "object",
"properties": {
"mean": {
"type": "number",
"default": 0.75,
"required": true
}
}
},
"_exp": {
"type": "object",
"name": "Exp",
"description": "Exponential",
"properties": { "properties": {
"mean": { "mean": {
"type": "number",
"default": 0, "default": 0,
"required": true "type": "number"
},
"size": {
"default": 0,
"type": "number"
} }
} },
"title": "Binomial",
"type": "object"
}, },
"_normal": { "_cauchy": {
"type": "object", "description": "Cauchy",
"name": "Normal",
"description": "Normal",
"properties": { "properties": {
"mean": { "location": {
"type": "number",
"default": 0, "default": 0,
"required": true "type": "number"
}, },
"stdev": { "scale": {
"type": "number",
"default": 0, "default": 0,
"required": true "type": "number"
} }
} },
"title": "Cauchy",
"type": "object"
}, },
"_lognormal": { "_exp": {
"type": "object", "description": "Exponential",
"name": "Lognormal",
"description": "Lognormal",
"properties": { "properties": {
"mean": { "mean": {
"name": "Mean", "default": 0,
"type": "number", "required": true,
"default": 0 "type": "number"
},
"stdev": {
"name": "Standard Deviation",
"type": "number",
"default": 0
} }
} },
"title": "Exp",
"type": "object"
}, },
"_binomial": { "_failure": {
"type": "object",
"name": "Binomial",
"description": "Binomial",
"properties": { "properties": {
"mean": { "Time to Failure": {
"type": "number", "$ref": "#/definitions/_dist"
"default": 0
}, },
"size": { "Time to Repair": {
"type": "number", "$ref": "#/definitions/_dist"
"default": 0 },
"repairman": {
"description": "Repairman",
"required": true,
"type": "string"
} }
} },
"title": "Yes",
"type": "object"
}, },
"_poisson": { "_fixed": {
"type": "object", "title": "Fixed",
"name": "Poisson",
"description": "Poisson",
"properties": { "properties": {
"lambda": { "mean": {
"type": "number", "default": 0,
"default": 0 "required": true,
"type": "number"
} }
} },
"type": "object"
}, },
"_logistic": { "_gama": {
"type": "object", "description": "Gama",
"name": "Logistic",
"description": "Logistic",
"properties": { "properties": {
"location": { "rate": {
"type": "number",
"default": 0, "default": 0,
"required": true "required": true,
"type": "number"
}, },
"scale": { "shape": {
"type": "number",
"default": 0, "default": 0,
"required": true "required": true,
} "type": "number"
}
},
"_caucy": {
"type": "object",
"name": "Caucy",
"description": "Caucy",
"properties": {
"location": {
"type": "number",
"default": 0
},
"scale": {
"type": "number",
"default": 0
} }
} },
"title": "Gama",
"type": "object"
}, },
"_geometric": { "_geometric": {
"type": "object",
"name": "Geometric",
"description": "Geometric", "description": "Geometric",
"properties": { "properties": {
"probability": { "probability": {
"type": "number",
"default": 0, "default": 0,
"required": true "required": true,
"type": "number"
} }
} },
"title": "Geometric",
"type": "object"
}, },
"_gama": { "_logistic": {
"type": "object", "description": "Logistic",
"name": "Gama",
"description": "Gama",
"properties": { "properties": {
"shape": { "location": {
"type": "number",
"default": 0, "default": 0,
"required": true "required": true,
"type": "number"
}, },
"rate": { "scale": {
"type": "number",
"default": 0, "default": 0,
"required": true "required": true,
"type": "number"
} }
} },
"title": "Logistic",
"type": "object"
}, },
"_weibull": { "_lognormal": {
"type": "object", "description": "Lognormal",
"name": "Weibull",
"description": "Weibull",
"properties": { "properties": {
"shape": { "mean": {
"type": "number", "_class": "Dream.Property",
"default": 0, "default": 0,
"required": true "name": "Mean",
"type": "number"
}, },
"scale": { "stdev": {
"type": "number", "_class": "Dream.Property",
"default": 0, "default": 0,
"required": true "name": "Standard Deviation",
"type": "number"
} }
} },
"title": "Lognormal",
"type": "object"
}, },
"_fixedFailure": { "_no": {
"type": "object", "description": "None",
"name": "Fixed", "title": "No",
"description": "Fixed", "type": "string"
},
"_normal": {
"description": "Normal",
"properties": { "properties": {
"MTTF": { "mean": {
"description": "Mean Time To Failure", "default": 0,
"type": "number", "required": true,
"default": 40, "type": "number"
"required": true
},
"MTTR": {
"description": "Mean Time To Repair",
"type": "number",
"default": 10,
"required": true
}, },
"repairman": { "stdev": {
"description": "Repairman", "default": 0,
"type": "string", "required": true,
"required": true "type": "number"
} }
} },
"title": "Normal",
"type": "object"
}, },
"_no": { "_poisson": {
"type": "string", "description": "Poisson",
"name": "No", "properties": {
"description": "None" "lambda": {
"default": 0,
"type": "number"
}
},
"title": "Poisson",
"type": "object"
}, },
"_availability": { "_weibull": {
"type": "object", "description": "Weibull",
"name": "Availability",
"description": "Availability",
"properties": { "properties": {
"MTTF": { "scale": {
"description": "Mean Time To Failure",
"type": "number",
"default": 40,
"required": true
},
"MTTR": {
"description": "Mean Time To Failure",
"default": 10,
"type": "number",
"required": true
},
"availability": {
"type": "number",
"default": 0, "default": 0,
"required": true "required": true,
"type": "number"
}, },
"repairman": { "shape": {
"description": "Repairman", "default": 0,
"type": "string", "required": true,
"required": true "type": "number"
} }
} },
"title": "Weibull",
"type": "object"
} }
}, }
},
"_failureDist": { "_failureDist": {
"allOf": [ "allOf": [
{ {
...@@ -233,8 +199,7 @@ ...@@ -233,8 +199,7 @@
"default": "No", "default": "No",
"enum": [ "enum": [
"No", "No",
"Fixed", "Yes"
"Availability"
] ]
} }
} }
...@@ -242,13 +207,10 @@ ...@@ -242,13 +207,10 @@
{ {
"oneOf": [ "oneOf": [
{ {
"$ref": "#/definitions/distributionTypes/_fixedFailure" "$ref": "#/definitions/distributionTypes/_failure"
}, },
{ {
"$ref": "#/definitions/distributionTypes/_no" "$ref": "#/definitions/distributionTypes/_no"
},
{
"$ref": "#/definitions/distributionTypes/_availability"
} }
] ]
} }
...@@ -270,7 +232,7 @@ ...@@ -270,7 +232,7 @@
"Binomial", "Binomial",
"Poisson", "Poisson",
"Logistic", "Logistic",
"Caucy", "Cauchy",
"Geometric", "Geometric",
"Gama", "Gama",
"Weibull" "Weibull"
...@@ -302,7 +264,7 @@ ...@@ -302,7 +264,7 @@
"$ref": "#/definitions/distributionTypes/_logistic" "$ref": "#/definitions/distributionTypes/_logistic"
}, },
{ {
"$ref": "#/definitions/distributionTypes/_caucy" "$ref": "#/definitions/distributionTypes/_cauchy"
}, },
{ {
"$ref": "#/definitions/distributionTypes/_geometric" "$ref": "#/definitions/distributionTypes/_geometric"
...@@ -486,7 +448,7 @@ ...@@ -486,7 +448,7 @@
} }
] ]
}, },
"Dream.QueueManagedJob": { "Dream.QueueJobShop": {
"name": "Queue", "name": "Queue",
"_class": "node", "_class": "node",
"description": "A queue for jobs", "description": "A queue for jobs",
...@@ -575,7 +537,7 @@ ...@@ -575,7 +537,7 @@
} }
] ]
}, },
"Dream.MachineManagedJob": { "Dream.MachineJobShop": {
"name": "Machine", "name": "Machine",
"description": "A station processing items for some time given by a distribution provided by the entities that are processed", "description": "A station processing items for some time given by a distribution provided by the entities that are processed",
"css": { "css": {
...@@ -633,7 +595,7 @@ ...@@ -633,7 +595,7 @@
} }
] ]
}, },
"Dream.OperatorManagedJob": { "Dream.Operator": {
"name": "Operator", "name": "Operator",
"_class": "node", "_class": "node",
"description": "A resource that operates stations", "description": "A resource that operates stations",
...@@ -811,8 +773,7 @@ ...@@ -811,8 +773,7 @@
} }
}, },
"pre_processing": { "pre_processing": {
"description" : "", "plugin_list": [
"_plugin_list": [
{ {
"_class": "dream.plugins.Debug.Debug", "_class": "dream.plugins.Debug.Debug",
"argument": "Argument Value" "argument": "Argument Value"
...@@ -824,12 +785,10 @@ ...@@ -824,12 +785,10 @@
] ]
}, },
"processing_plugin": { "processing_plugin": {
"description": "",
"_class": "dream.plugins.ACO.ACO" "_class": "dream.plugins.ACO.ACO"
}, },
"post_processing": { "post_processing": {
"description": "", "plugin_list": []
"plugin_list": []
}, },
"general": { "general": {
"properties": { "properties": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment