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
Merge requests
!68
Update Euclids_Algorithm.mp
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update Euclids_Algorithm.mp
Pamela_Branch_new_2
into
master
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Pamela Dyer
requested to merge
Pamela_Branch_new_2
into
master
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
9e47e0ac
2 commits,
2 years ago
1 file
+
13
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
models/Application_examples/Euclids_Algorithm.mp
+
13
−
15
Options
/*┬────────────────────────────────────────────────────────┐
│*│ ┌─[ Title and Authors ]──────────────────────────────┐ │
│*│ │ Model of Euclids Algorithm │ │
│*│ │ Created by Michael Collins │ │
│*│ │ October, 2022. │ │
│*│ │ Created by Michael Collins in October, 2022. │ │
│*│ │ Edited by Pamela Dyer and Kristin Giammarco in │ │
│*│ │ October, 2022.
│ │
│*│ │
October, 2022. │ │
│*│ └────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ Purpose ]────────────────────────────────────────┐ │
│*│ │ To use MP to model an adaptation of the well-known │ │
│*│ │ Greatest Common Divisor Algorithm by Euclid.
│ │
│*│ │ Greatest Common Divisor
(GCD)
Algorithm by Euclid. │ │
│*│ └────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ Description ]────────────────────────────────────┐ │
@@ -22,33 +21,31 @@
│*│ ┌─[ References ]─────────────────────────────────────┐ │
│*│ │ Leslie Lamport's Introduction to TLA+ | |
│*│ │ https://www.newsroom.hlf-foundation.org/newsroom/ | |
│*│ │ https://www.newsroom.hlf-foundation.org/newsroom/ | |
|*| | lectures/video/lecture-if-youre-not-writing-a- | |
|*| | program-dont-use-a-programming-language.html | |
│*│ │ https://www.newsroom.hlf-foundation.org/newsroom/lectures/video/lecture-if-youre-not-writing-a-program-dont-use-a-programming-language.html
│*│ └────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ Search Terms ]───────────────────────────────────┐ │
│*│ │ behavior, Euclid
,
GCD
,
Lamport
; │ │
│*│ │ coordination, event;
coordination
, conditional
;
│ │
│*│ │ behavior, Euclid
;
GCD
;
Lamport;
│ │
│*│ │ coordination, event;
ENSURE
, conditional
│ │
│*│ └────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ Instructions ]───────────────────────────────────┐ │
│*│ │ Run for Scopes 1, 2, and 3. │ │
│*│ ├─[ Run Statistics ]─────────────────────────────────┤ │
│*│ │ Scope 1: 4 traces in less than 1 sec. │ │
│*│ │ Scope 2: 1
1
traces in less than 1 sec. │ │
│*│ │ Scope 3: 2
6
traces in less than 1 sec. │ │
│*│ │ Scope 2: 1
0
traces in less than 1 sec. │ │
│*│ │ Scope 3: 2
2
traces in less than 1 sec. │ │
│*│ └────────────────────────────────────────────────────┘ │
└*┴───────────────────────────────────────────────────────*/
SCHEMA Euclids_Algorithm
ROOT GCD:
set_initial_value_for_x
set_initial_Value_for_y
ROOT GCD:
set_initial_value_for_x
set_initial_Value_for_y
(*
( x_has_become_greater_than_y
x_is
assigned_new_value_of_y_subtracted_from_x
x_is
_
assigned_new_value_of_y_subtracted_from_x
y_does_not_change_value
|
y_has_become_greater_than_x
@@ -62,7 +59,8 @@ ROOT GCD: set_initial_value_for_x
IF #x_equals_y > 0 THEN
ENSURE FOREACH $x:x_equals_y
ENSURE #x_equals_y == 1;
ENSURE FOREACH $x: x_equals_y
#x_has_become_greater_than_y AFTER $x == 0 AND
Loading