Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris-coq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Amin Timany
iris-coq
Commits
c4f0dfe7
Commit
c4f0dfe7
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
move them all to the new Finmap
parent
8356467e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/ModuRes/Finmap.v
+596
-950
596 additions, 950 deletions
lib/ModuRes/Finmap.v
lib/ModuRes/Finmap2.v
+0
-1229
0 additions, 1229 deletions
lib/ModuRes/Finmap2.v
lib/ModuRes/Util.v
+10
-0
10 additions, 0 deletions
lib/ModuRes/Util.v
with
606 additions
and
2179 deletions
lib/ModuRes/Finmap.v
+
596
−
950
View file @
c4f0dfe7
This diff is collapsed.
Click to expand it.
lib/ModuRes/Finmap2.v
deleted
100644 → 0
+
0
−
1229
View file @
8356467e
This diff is collapsed.
Click to expand it.
lib/ModuRes/Util.v
+
10
−
0
View file @
c4f0dfe7
...
...
@@ -20,6 +20,16 @@ Ltac split_conjs := repeat (match goal with [ |- _ /\ _ ] => split end).
(* TODO RJ: Is this already defined somewhere? *)
Class
DecEq
(
T
:
Type
)
:=
dec_eq
:
forall
(
t1
t2
:
T
),
{
t1
=
t2
}
+
{
t1
<>
t2
}
.
Global
Instance
DecEqBool
:
DecEq
bool
.
Proof
.
move
=>
b1
b2
.
decide
equality
.
Qed
.
Global
Instance
DecEqNat
:
DecEq
nat
.
Proof
.
move
=>
n1
n2
.
decide
equality
.
Qed
.
(* Well-founded induction. *)
Definition
wf_nat_ind
:=
well_founded_induction
Wf_nat
.
lt_wf
.
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