Last active
December 29, 2015 04:19
-
-
Save hauleth/7614118 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"machines": [ | |
{ | |
"maintenances": [ | |
{ "start": 10, "duration": 10 }, | |
{ "start": 50, "duration": 10 }, | |
] | |
} | |
], | |
"tasks": [ | |
{ | |
"warm_up": 1, | |
"execute": 2 | |
"cool_down": 4, | |
}, | |
{ | |
"warm_up": 1, | |
"execute": 2 | |
"cool_down": 4, | |
}, | |
{ | |
"warm_up": 1, | |
"execute": 2 | |
"cool_down": 4, | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<problem> | |
<machines> | |
<machine> | |
<maintenance start="10" duration="10"/> | |
<maintenance start="50" duration="10"/> | |
</machine> | |
</machines> | |
<tasks> | |
<task warm-up="1" execute="2" cool-down="4"/> | |
<task warm-up="1" execute="2" cool-down="4"/> | |
<task warm-up="1" execute="2" cool-down="4"/> | |
</tasks> | |
</problem> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment