-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from tom-and-the-toothfairies/iteration-7
Iteration 7
- Loading branch information
Showing
55 changed files
with
1,266 additions
and
557 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
process alternative_non_ddis { | ||
selection { | ||
action s1 { | ||
requires { drug { "trandolapril" } } | ||
} | ||
action s2 { | ||
requires { drug { "torasemide" } } | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
process foo { | ||
task bar { | ||
action baz { | ||
requires { | ||
time { | ||
days { 28 } | ||
years { 1 } | ||
minutes { 10 } | ||
years { 3 } | ||
hours { 7 } | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
process foo { | ||
task bar { | ||
action baz { | ||
tool { "pills" } | ||
script { "eat the pills" } | ||
agent { "patient" } | ||
requires { | ||
drug { "torasemide" } | ||
} | ||
provides { "a cured patient" } | ||
requires { | ||
time { | ||
minutes { 45 } | ||
} | ||
} | ||
} | ||
action baz2 { | ||
tool { "pills" } | ||
script { "eat the pills" } | ||
agent { (intangible)(inscrutable) pml.wtf && ("foo" || 1 != 2) } | ||
requires { | ||
drug { "trandolapril" } | ||
} | ||
provides { "a cured patient" } | ||
requires { | ||
time { | ||
years { 20 } | ||
weeks { 12 } | ||
days { 15 } | ||
hours { 10 } | ||
minutes { 6 } | ||
seconds { 14 } | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
process parallel_ddis { | ||
branch { | ||
action b1 { | ||
requires { drug { "trandolapril" } } | ||
} | ||
action b2 { | ||
requires { drug { "torasemide" } } | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
process repeated_alternative_ddis { | ||
iteration { | ||
selection { | ||
action s1 { | ||
requires { drug { "trandolapril" } } | ||
} | ||
action s2 { | ||
requires { drug { "torasemide" } } | ||
} | ||
} | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.