Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coqdram
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
Package Registry
Container 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sdram20
coqdram
Commits
32701650
Commit
32701650
authored
3 years ago
by
Felipe Lisboa
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup last commit : deleted unused definitions, Cmds_PRE_ok definition updated.
parent
9bdf1a21
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
coq/Commands.v
+1
-1
1 addition, 1 deletion
coq/Commands.v
coq/Trace.v
+1
-4
1 addition, 4 deletions
coq/Trace.v
with
2 additions
and
5 deletions
coq/Commands.v
+
1
−
1
View file @
32701650
...
...
@@ -76,7 +76,7 @@ Section Commands.
Definition
isPRE
(
cmd
:
Command_t
)
:=
cmd
.(
CKind
)
==
PRE
.
Definition
PRE_of_req
req
t
:=
mkCmd
t
PRE
req
.
...
...
This diff is collapsed.
Click to expand it.
coq/Trace.v
+
1
−
4
View file @
32701650
...
...
@@ -8,9 +8,6 @@ Section Trace.
Definition
Same_Bank
(
a
b
:
Command_t
)
:=
a
.(
Request
).(
Bank
)
==
b
.(
Request
).(
Bank
).
Definition
Same_Bank_3
(
a
b
c
:
Command_t
)
:=
Same_Bank
a
b
&&
Same_Bank
a
c
.
Definition
ACT_to_ACT
(
a
b
:
Command_t
)
:=
isACT
a
&&
isACT
b
.
...
...
@@ -44,7 +41,7 @@ Section Trace.
(
*
Between
any
two
PREs
to
the
same
bank
,
there
has
to
be
an
ACT
to
the
same
bank
in
between
*
)
Cmds_PRE_ok
:
forall
a
b
,
a
\
in
Commands
->
b
\
in
Commands
->
PRE_to_PRE
a
b
->
Same_Bank
a
b
->
a
!=
b
->
PRE_to_PRE
a
b
->
Same_Bank
a
b
->
Before
a
b
->
exists
c
:
Command_t
,
isACT
c
/
\
Same_Bank
a
c
/
\
c
\
in
Between
Commands
a
b
;
(
*
Ensure
that
the
time
between
two
ACT
commands
respects
T_RC
*
)
...
...
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