Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
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
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
Gregory Malecha
stdpp
Compare revisions
master to options
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
gmalecha/stdpp
Select target project
No results found
options
Select Git revision
Swap
Target
iris/stdpp
Select target project
iris/stdpp
johannes/stdpp
proux1/stdpp
dosualdo/stdpp
benoit/coq-stdpp
dfrumin/coq-stdpp
haidang/stdpp
amintimany/coq-stdpp
swasey/coq-stdpp
simongregersen/stdpp
proux/stdpp
janno/coq-stdpp
amaurremi/coq-stdpp
msammler/stdpp
tchajed/stdpp
YaZko/stdpp
maximedenes/stdpp
jakobbotsch/stdpp
Blaisorblade/stdpp
simonspies/stdpp
lepigre/stdpp
devilhena/stdpp
simonfv/stdpp
jihgfee/stdpp
snyke7/stdpp
Armael/stdpp
gmalecha/stdpp
olaure01/stdpp
sarahzrf/stdpp
atrieu/stdpp
herbelin/stdpp
arthuraa/stdpp
lgaeher/stdpp
mrhaandi/stdpp
mattam82/stdpp
Quarkbeast/stdpp
aa755/stdpp
gmevel/stdpp
lstefane/stdpp
jung/stdpp
vsiles/stdpp
dlesbre/stdpp
bergwerf/stdpp
marijnvanwezel/stdpp
ivanbakel/stdpp
tperami/stdpp
adamAndMath/stdpp
Villetaneuse/stdpp
sanjit/stdpp
yiyunliu/stdpp
thomas-lamiaux/stdpp
Tragicus/stdpp
kbedarka/stdpp
53 results
master
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Options file.
· d730a337
Robbert Krebbers
authored
8 years ago
d730a337
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+0
-3
0 additions, 3 deletions
Makefile
_CoqProject
+3
-0
3 additions, 0 deletions
_CoqProject
theories/base.v
+0
-5
0 additions, 5 deletions
theories/base.v
theories/stdpp_options.v
+5
-0
5 additions, 0 deletions
theories/stdpp_options.v
with
8 additions
and
8 deletions
Makefile
View file @
d730a337
...
...
@@ -3,9 +3,6 @@ ifeq ($(Y), 1)
YFLAG
=
-y
endif
# Configure Coq warnings
COQ_MAKEFILE_FLAGS
?=
-arg
-w
-arg
-notation-overridden
,-redundant-canonical-projection,-several-object-files
# Forward most targets to Coq makefile (with some trick to make this phony)
%
:
Makefile.coq phony
+@make
-f
Makefile.coq
$@
...
...
This diff is collapsed.
Click to expand it.
_CoqProject
View file @
d730a337
-Q theories stdpp
-arg -w -arg -notation-overridden,-redundant-canonical-projection,-several-object-files
-arg -l -arg stdpp_options
theories/stdpp_options.v
theories/option.v
theories/fin_map_dom.v
theories/bset.v
...
...
This diff is collapsed.
Click to expand it.
theories/base.v
View file @
d730a337
...
...
@@ -4,15 +4,10 @@
that are used throughout the whole development. Most importantly it contains
abstract interfaces for ordered structures, collections, and various other data
structures. *)
Global
Generalizable
All
Variables
.
Global
Set
Automatic
Coercions
Import
.
Global
Set
Asymmetric
Patterns
.
Global
Unset
Transparent
Obligations
.
From
Coq
Require
Export
Morphisms
RelationClasses
List
Bool
Utf8
Setoid
.
Set
Default
Proof
Using
"Type"
.
Export
ListNotations
.
From
Coq
.
Program
Require
Export
Basics
Syntax
.
Obligation
Tactic
:=
idtac
.
(** Sealing off definitions *)
Set
Primitive
Projections
.
...
...
This diff is collapsed.
Click to expand it.
theories/stdpp_options.v
0 → 100644
View file @
d730a337
Generalizable
All
Variables
.
Set
Automatic
Coercions
Import
.
Set
Asymmetric
Patterns
.
Unset
Transparent
Obligations
.
Obligation
Tactic
:=
idtac
.
This diff is collapsed.
Click to expand it.