Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lamport-modeling-and-verification
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jloew2
lamport-modeling-and-verification
Commits
01075315
Commit
01075315
authored
7 years ago
by
Justin Loew
Browse files
Options
Downloads
Patches
Plain Diff
Add ability to count the items in a task queue
parent
c5be37d8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
task.maude
+4
-0
4 additions, 0 deletions
task.maude
with
4 additions
and
0 deletions
task.maude
+
4
−
0
View file @
01075315
...
...
@@ -24,10 +24,14 @@ mod TASK-QUEUE is
op mt : -> TaskQueue .
op __ : TaskQueue TaskQueue -> TaskQueue [ctor assoc id: mt] .
op insert : TaskQueue Task -> TaskQueue [left id: mt] .
op count : TaskQueue -> Nat .
var Q : TaskQueue . var J K : Task .
vars N M : Oid . vars T1 T2 : Nat .
ceq insert(Q J, K) = insert(Q, K) J if K < J .
eq insert(Q J, K) = Q J K [owise] .
eq count(mt) = 0 .
eq count(Q J) = s(count(Q)) .
endm
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