Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MP System and Software Behavior Modeling Tool
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
Container Registry
Model registry
Operate
Environments
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 System and Software Behavior Modeling Tool
Commits
5f08330c
Commit
5f08330c
authored
5 years ago
by
Auguston, Mikhail
Browse files
Options
Downloads
Patches
Plain Diff
Delete example49.mp
parent
8ceddacf
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Firebird_Pre_loaded_examples/example49.mp
+0
-51
0 additions, 51 deletions
Firebird_Pre_loaded_examples/example49.mp
with
0 additions
and
51 deletions
Firebird_Pre_loaded_examples/example49.mp
deleted
100644 → 0
+
0
−
51
View file @
8ceddacf
/*
// example49.cpp
// histogram example, run for scopes 1, 2, 3, and up
// Created by Mikhail Auguston on 11/15/19.
*/
SCHEMA Example
ROOT A: (<<0.2>> (+ a1 +) | (<<0.4>> a2 | (* a3 *) ) | <<0.3>> a4);
ATTRIBUTES { number count; };
GLOBAL
/* this GRAPH is used as a container to collect data about valid trace probabilities */
GRAPH Data { };
WITHIN Data{
/* numerical_loop_header(40) is used to perform required interval calculations. */
FOR Num$t: [1.. #$$TRACE] STEP 1
DO
FOR Num$n: [0 .. 0.9] STEP 0.1
DO
Node$f: LAST( Num$n ".." Num$n + 0.1);
/* p - pre-defined trace probability attribute */
IF Num$n <= #$$TP(Num$t) AND
#$$TP(Num$t) < Num$n + 0.1 THEN
Node$x: LAST( Num$n ".." Num$n + 0.1);
Node$x.count +:= 1;
/* SAY("created node " Node$x " with count " Node$x.count); */
FI;
OD;
OD;
}; /* end of WITHIN Data */
TABLE probability_histogram {
TABS string probability_interval,
number trace_count; };
BAR CHART probability_chart { TITLE("Trace probabilities");
FROM probability_histogram;
X_AXIS probability_interval; };
WITHIN Data{
FOR Node$n
DO
probability_histogram <|
probability_interval: SAY(Node$n),
trace_count: Node$n.count;
OD;
};
SAY("Total " #$$TRACE " traces for scope " $$scope);
SHOW probability_histogram;
SHOW probability_chart SORT;
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