Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
FloVer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
AVA
FloVer
Commits
3901659c
Commit
3901659c
authored
May 08, 2018
by
Heiko Becker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compatibility, fix binary compilation
parent
f1785f18
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
7 deletions
+3
-7
coq/Checker_extraction.v
coq/Checker_extraction.v
+1
-1
coq/Infra/NatSet.v
coq/Infra/NatSet.v
+1
-3
coq/binary/Makefile
coq/binary/Makefile
+1
-3
No files found.
coq/Checker_extraction.v
View file @
3901659c
Require
Import
Flover
.
CertificateChecker
Flover
.
floverParser
.
Require
Import
Coq
.
extraction
.
ExtrOcamlString
Coq
.
extraction
.
ExtrOcamlBasic
Coq
.
extraction
.
ExtrOcamlNatBigInt
Coq
.
extraction
.
ExtrOcamlZBigInt
.
Extraction
Language
O
c
aml
.
Extraction
Language
O
C
aml
.
Extraction
"./binary/CoqChecker.ml"
runChecker
.
\ No newline at end of file
coq/Infra/NatSet.v
View file @
3901659c
...
...
@@ -14,7 +14,7 @@ Module OWL.
Proof
.
now
unfold
eq
;
split
;
subst
.
Qed
.
Definition
compare
:=
Compare_dec
.
nat_
compare
.
Definition
compare
:=
Nat
.
compare
.
Lemma
compare_spec
:
forall
x
y
,
CompSpec
eq
lt
x
y
(
compare
x
y
).
Proof
.
...
...
@@ -42,8 +42,6 @@ Notation "x 'mem' S" := (NatSet.mem x S) (at level 0, no associativity).
Notation
"x '∈' S"
:=
(
NatSet
.
In
x
S
)
(
at
level
100
,
no
associativity
).
Check
(
forall
x
S
,
x
∈
S
--
{{
x
}}
).
Lemma
not_in_not_mem
:
forall
n
S
,
NatSet
.
mem
n
S
=
false
->
...
...
coq/binary/Makefile
View file @
3901659c
#bytes:
# ocamlc -c CoqChecker.ml
# ocamlc -o coq_checker_bytes nums.cma big.ml CoqChecker.ml coq_main.ml
native
:
ocamlc
-c
big.ml
ocamlc
-c
CoqChecker.ml
ocamlc
-c
CoqChecker.mli
ocamlc
-o
coq_checker_native nums.cma big.ml CoqChecker.ml coq_main.ml
all
:
native
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment