Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BiCoq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MARCON Cecile
BiCoq
Commits
67ce652e
Commit
67ce652e
authored
4 months ago
by
MARCON Cecile
Browse files
Options
Downloads
Patches
Plain Diff
fixed the imports
parent
f2906aae
No related branches found
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
src/MergeProduct.v
+1
-1
1 addition, 1 deletion
src/MergeProduct.v
src/Nesting.v
+1
-1
1 addition, 1 deletion
src/Nesting.v
src/ParallelProduct.v
+1
-1
1 addition, 1 deletion
src/ParallelProduct.v
src/Sorting.v
+2
-2
2 additions, 2 deletions
src/Sorting.v
src/UnionPossible.v
+1
-2
1 addition, 2 deletions
src/UnionPossible.v
with
6 additions
and
7 deletions
src/MergeProduct.v
+
1
−
1
View file @
67ce652e
...
...
@@ -22,7 +22,7 @@ From mathcomp Require Import all_ssreflect.
(
**
Merge
operator
*
)
Module
MergeBig
(
s
:
SignatureParameter
)
(
n
:
InfType
).
Module
pp
:=
ParallelProduct
s
n
.
I
nclude
pp
.
I
mport
pp
mup
tp
c
leb
eb
b
b
.
n
b
.
s
n
s
.
Definition
bigraph_merge_product
{
s1
r1
s2
r2
:
nat
}
{
i1
o1
i2
o2
:
NoDupList
}
(
b1
:
bigraph
s1
i1
r1
o1
)
(
b2
:
bigraph
s2
i2
r2
o2
)
...
...
This diff is collapsed.
Click to expand it.
src/Nesting.v
+
1
−
1
View file @
67ce652e
...
...
@@ -23,7 +23,7 @@ Import ListNotations.
(
**
Nesting
operator
*
)
Module
NestingBig
(
s
:
SignatureParameter
)
(
n
:
InfType
).
Module
pp
:=
ParallelProduct
s
n
.
I
nclude
pp
.
I
mport
pp
mup
tp
c
leb
eb
b
b
.
n
b
.
s
n
s
.
Definition
nest
{
s1
r1
s2
r2
:
nat
}
{
o1
i2
o2
:
NoDupList
}
(
b1
:
bigraph
s1
EmptyNDL
r1
o1
)
(
b2
:
bigraph
s2
i2
r2
o2
)
...
...
This diff is collapsed.
Click to expand it.
src/ParallelProduct.v
+
1
−
1
View file @
67ce652e
...
...
@@ -30,7 +30,7 @@ Require Import List.
After
the
definition
,
we
prove
associativity
and
commutativity
of
dis_juxtaposition
*
)
Module
ParallelProduct
(
s
:
SignatureParameter
)
(
n
:
InfType
).
Module
mup
:=
UnionPossible
s
n
.
I
nclude
mup
.
I
mport
mup
tp
c
leb
eb
b
b
.
n
b
.
s
n
s
.
Set
Typeclasses
Unique
Instances
.
Set
Typeclasses
Iterative
Deepening
.
...
...
This diff is collapsed.
Click to expand it.
src/Sorting.v
+
2
−
2
View file @
67ce652e
...
...
@@ -35,8 +35,8 @@ Import ListNotations.
Module
Sorting
(
s
:
SignatureParameter
)
(
n
:
InfType
).
Module
MB
:=
MergeBig
s
n
.
I
nclude
MB
.
Module
mb
:=
MergeBig
s
n
.
I
mport
mb
pp
mup
tp
c
leb
eb
b
b
.
n
b
.
s
n
s
.
(
*
Parameter
mysort
:
orderType
tt
.
(
*
pourquoi
tt
et
pas
autre
chose
?*
)
Parameter
DefautltSort
:
mysort
.
*
)
...
...
This diff is collapsed.
Click to expand it.
src/UnionPossible.v
+
1
−
2
View file @
67ce652e
...
...
@@ -24,9 +24,8 @@ From mathcomp Require Import all_ssreflect.
Require
Import
List
.
Module
UnionPossible
(
s
:
SignatureParameter
)
(
n
:
InfType
).
Module
tp
:=
TensorProduct
s
n
.
I
nclude
tp
.
I
mport
tp
c
leb
eb
b
b
.
n
b
.
s
n
s
.
Definition
union_possible
{
s1
r1
s2
r2
:
nat
}
{
i1
o1
i2
o2
:
NoDupList
}
(
b1
:
bigraph
s1
i1
r1
o1
)
(
b2
:
bigraph
s2
i2
r2
o2
)
:=
...
...
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