Commit 505f9ffa authored by Jérome Perrin's avatar Jérome Perrin

Source interarival time can be configured like distribution type of a machine

parent e2b88a8b
......@@ -213,26 +213,31 @@ schema = {
}
# complex schemas (Dream.PropertyList)
schema["interarrivalTime"] = {
"id": "interarrivalTime",
schema["processingTime"] = {
"id": "processingTime",
"property_list": [
schema["distributionType"],
schema["mean"]],
schema["mean"],
schema["stdev"],
schema["min"],
schema["max"]
],
"_class": "Dream.PropertyList"
}
schema["processingTime"] = {
"id": "processingTime",
schema["interarrivalTime"] = {
"id": "interarrivalTime",
"property_list": [
schema["distributionType"],
schema["mean"],
schema["stdev"],
schema["min"],
schema["max"]
schema["max"],
],
"_class": "Dream.PropertyList"
}
schema["failures"] = {
"id": "failures",
"property_list": [
......
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