Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DSL pour Robotique en essaim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kylian Fontaine
DSL pour Robotique en essaim
Commits
1c16e62e
Commit
1c16e62e
authored
11 months ago
by
Kylian Fontaine
Browse files
Options
Downloads
Plain Diff
Merge branch 'main' into 'module'
# Conflicts: # lib/gencoq.ml
parents
2b843ee7
5dcd9ee5
No related branches found
No related tags found
1 merge request
!1
Module
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/gencoq.ml
+3
-3
3 additions, 3 deletions
lib/gencoq.ml
with
3 additions
and
3 deletions
lib/gencoq.ml
+
3
−
3
View file @
1c16e62e
...
...
@@ -96,9 +96,9 @@ let rec expr_to_coq (r : expr) : Formula.t =
|
Div
->
Infix
(
expr_to_coq
x
,
"/"
,
expr_to_coq
y
)
|
And
->
Infix
(
expr_to_coq
x
,
"&&"
,
expr_to_coq
y
)
|
Or
->
Infix
(
expr_to_coq
x
,
"||"
,
expr_to_coq
y
)
|
Sup
->
Infix
(
expr_to_coq
x
,
">"
,
expr_to_coq
y
)
|
Inf
->
Infix
(
expr_to_coq
x
,
"<"
,
expr_to_coq
y
)
|
Equal
->
Infix
(
expr_to_coq
x
,
"=="
,
expr_to_coq
y
)
|
Sup
->
App
(
Cst
"gt"
,
[
expr_to_coq
x
;
expr_to_coq
y
]
)
|
Inf
->
App
(
Cst
"lt"
,
[
expr_to_coq
x
;
expr_to_coq
y
]
)
|
Equal
->
App
(
Cst
"eq"
,
[
expr_to_coq
x
;
expr_to_coq
y
]
)
|
Diff
->
Infix
(
expr_to_coq
x
,
"!="
,
expr_to_coq
y
)
)
|
Cons
(
e1
,
e2
)
->
App
(
Raw
(
"cons"
)
,
([
expr_to_coq
e1
;
expr_to_coq
e2
]))
...
...
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