Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Preloaded Examples
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Monterey Phoenix
MP Model Collection
Preloaded Examples
Commits
61c17da3
Commit
61c17da3
authored
3 years ago
by
Giammarco, Kristin M
Browse files
Options
Downloads
Patches
Plain Diff
Update Application_Process.mp
parent
bd2ef1c2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
models/Application_examples/Application_Process.mp
+6
-7
6 additions, 7 deletions
models/Application_examples/Application_Process.mp
with
6 additions
and
7 deletions
models/Application_examples/Application_Process.mp
+
6
−
7
View file @
61c17da3
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
│*│ │ Model of Application Process │ │
│*│ │ Model of Application Process │ │
│*│ │ Created by Mikhail Auguston in 2018. │ │
│*│ │ Created by Mikhail Auguston in 2018. │ │
│*│ │ Edited by Pamela Dyer in September, 2021. │ │
│*│ │ Edited by Pamela Dyer in September, 2021. │ │
│*│ │ Probabilties and timing attributes, reports,
│ │
│*│ │ Probabil
i
ties and timing attributes, reports, │ │
│*│ │ tables, and charts added by Kristin Giammarco in │ │
│*│ │ tables, and charts added by Kristin Giammarco in │ │
│*│ │ January, 2022. │ │
│*│ │ January, 2022. │ │
│*│ └────────────────────────────────────────────────────┘ │
│*│ └────────────────────────────────────────────────────┘ │
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
│*│ ┌─[ Purpose ]────────────────────────────────────────┐ │
│*│ ┌─[ Purpose ]────────────────────────────────────────┐ │
│*│ │ To provide a template for an application approval │ │
│*│ │ To provide a template for an application approval │ │
│*│ │ process involving multiple levels of approval, and │ │
│*│ │ process involving multiple levels of approval, and │ │
│*│ │ demonstrate an example of a schedule analyis that
│ │
│*│ │ demonstrate an example of a schedule analy
s
is that │ │
│*│ │ takes trace probability into account. │ │
│*│ │ takes trace probability into account. │ │
│*│ └────────────────────────────────────────────────────┘ │
│*│ └────────────────────────────────────────────────────┘ │
│*│ │
│*│ │
...
@@ -241,10 +241,10 @@ WITHIN trace_data{
...
@@ -241,10 +241,10 @@ WITHIN trace_data{
DO
DO
weighted_duration +:=
weighted_duration +:=
Node$x.trace_duration/8 * #$$TP(Node$x.trace_unique_id);
Node$x.trace_duration/8 * #$$TP(Node$x.trace_unique_id);
IF Node$x.trace_duration ==
GLOBAL.
accumulated_max_duration
IF Node$x.trace_duration == accumulated_max_duration
THEN d_max:= true;
THEN d_max:= true;
ELSE d_max:= false; FI;
ELSE d_max:= false; FI;
IF Node$x.trace_duration ==
GLOBAL.
accumulated_min_duration
IF Node$x.trace_duration == accumulated_min_duration
THEN d_min:= true;
THEN d_min:= true;
ELSE d_min:= false; FI;
ELSE d_min:= false; FI;
...
@@ -259,15 +259,14 @@ WITHIN trace_data{
...
@@ -259,15 +259,14 @@ WITHIN trace_data{
OD;
OD;
};
};
/*
Comment in the following SHOW statement to view table of trace data
*/
/*
This table shows that there are 2 maximums and 1 minimum.
*/
/*
SHOW trace_data_summary;
*/
SHOW trace_data_summary;
/* Create summary report */
/* Create summary report */
REPORT Duration_Statistics_Report {
REPORT Duration_Statistics_Report {
TITLE ("Scope "$$scope" Duration Statistics"); };
TITLE ("Scope "$$scope" Duration Statistics"); };
CLEAR Duration_Statistics_Report;
SAY("There are " #$$TRACE " traces total." )
SAY("There are " #$$TRACE " traces total." )
=> Duration_Statistics_Report;
=> Duration_Statistics_Report;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment