Skip to content

Instantly share code, notes, and snippets.

@hauleth
Last active December 29, 2015 04:19
Show Gist options
  • Save hauleth/7614118 to your computer and use it in GitHub Desktop.
Save hauleth/7614118 to your computer and use it in GitHub Desktop.
{
"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,
}
]
}
<?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