Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
David Swasey
coq-stdpp
Commits
1dee15b3
Commit
1dee15b3
authored
Mar 15, 2017
by
Robbert Krebbers
Browse files
Remove my name from the copyright headers.
parent
07d81355
Changes
37
Hide whitespace changes
Inline
Side-by-side
theories/nmap.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This files extends the implementation of finite over [positive] to finite
maps whose keys range over Coq's data type of binary naturals [N]. *)
...
...
theories/numbers.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This file collects some trivial facts on the Coq types [nat] and [N] for
natural numbers, and the type [Z] for integers. It also declares some useful
...
...
theories/option.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This file collects general purpose definitions and theorems on the option
data type that are not in the Coq standard library. *)
...
...
theories/orders.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** Properties about arbitrary pre-, partial, and total orders. We do not use
the relation [⊆] because we often have multiple orders on the same structure *)
...
...
theories/pmap.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This files implements an efficient implementation of finite maps whose keys
range over Coq's data type of positive binary naturals [positive]. The
...
...
theories/prelude.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
From
stdpp
Require
Export
base
...
...
theories/pretty.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
From
stdpp
Require
Export
strings
.
From
stdpp
Require
Import
relations
.
...
...
theories/proof_irrel.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This file collects facts on proof irrelevant types/propositions. *)
From
stdpp
Require
Export
base
.
...
...
theories/relations.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This file collects definitions and theorems on abstract rewriting systems.
These are particularly useful as we define the operational semantics as a
...
...
theories/set.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This file implements sets as functions into Prop. *)
From
stdpp
Require
Export
collections
.
...
...
theories/sorting.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** Merge sort. Adapted from the implementation of Hugo Herbelin in the Coq
standard library, but without using the module system. *)
...
...
theories/streams.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
From
stdpp
Require
Export
tactics
.
Set
Default
Proof
Using
"Type"
.
...
...
theories/stringmap.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This files implements an efficient implementation of finite maps whose keys
range over Coq's data type of strings [string]. The implementation uses radix-2
...
...
theories/strings.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
From
Coq
Require
Import
Ascii
.
From
Coq
Require
Export
String
.
...
...
theories/tactics.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This file collects general purpose tactics that are used throughout
the development. *)
...
...
theories/vector.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This file collects general purpose definitions and theorems on vectors
(lists of fixed length). It uses the definitions from the standard library, but
...
...
theories/zmap.v
View file @
1dee15b3
(* Copyright (c) 2012-2017,
Robbert Krebb
ers. *)
(* Copyright (c) 2012-2017,
Coq-std++ develop
ers. *)
(* This file is distributed under the terms of the BSD license. *)
(** This files extends the implementation of finite over [positive] to finite
maps whose keys range over Coq's data type of binary naturals [Z]. *)
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
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