File tree Expand file tree Collapse file tree 13 files changed +49
-8
lines changed Expand file tree Collapse file tree 13 files changed +49
-8
lines changed Original file line number Diff line number Diff line change @@ -262,6 +262,10 @@ import IO
262
262
-- More documentation
263
263
------------------------------------------------------------------------
264
264
265
+ -- Examples of how decidability is handled in the library.
266
+
267
+ import README.Decidability
268
+
265
269
-- Some examples showing how the case expression can be used.
266
270
267
271
import README.Case
Original file line number Diff line number Diff line change 6
6
7
7
{-# OPTIONS --without-K --safe #-}
8
8
9
- module README.Dec where
9
+ module README.Decidability where
10
10
11
11
-- Reflects and Dec are defined in Relation.Nullary, and operations on them can
12
12
-- be found in Relation.Nullary.Reflects and Relation.Nullary.Decidable.
Original file line number Diff line number Diff line change 9
9
-- The search tree invariant is specified using the technique
10
10
-- described by Conor McBride in his talk "Pivotal pragmatism".
11
11
12
+ -- See README.Data.AVL for examples of how to use AVL trees.
13
+
12
14
{-# OPTIONS --without-K --safe #-}
13
15
14
16
open import Relation.Binary using (StrictTotalOrder)
Original file line number Diff line number Diff line change 4
4
-- Integers
5
5
------------------------------------------------------------------------
6
6
7
+ -- See README.Data.Integer for examples of how to use and reason about
8
+ -- integers.
9
+
7
10
{-# OPTIONS --without-K --safe #-}
8
11
9
12
module Data.Integer where
Original file line number Diff line number Diff line change 4
4
-- Integers, basic types and operations
5
5
------------------------------------------------------------------------
6
6
7
+ -- See README.Data.Integer for examples of how to use and reason about
8
+ -- integers.
9
+
7
10
{-# OPTIONS --without-K --safe #-}
8
11
9
12
-- Disabled to prevent warnings from deprecated names
Original file line number Diff line number Diff line change 4
4
-- Lists
5
5
------------------------------------------------------------------------
6
6
7
+ -- See README.Data.List for examples of how to use and reason about
8
+ -- lists.
9
+
7
10
{-# OPTIONS --without-K --safe #-}
8
11
9
12
module Data.List where
Original file line number Diff line number Diff line change 4
4
-- Lists, basic types and operations
5
5
------------------------------------------------------------------------
6
6
7
+ -- See README.Data.List for examples of how to use and reason about
8
+ -- lists.
9
+
7
10
{-# OPTIONS --without-K --safe #-}
8
11
9
12
module Data.List.Base where
Original file line number Diff line number Diff line change 6
6
-- Lambda-Calculus with Explicit Substitutions"
7
7
------------------------------------------------------------------------
8
8
9
+ -- See README.Data.List.Fresh and README.Data.Trie.NonDependent for
10
+ -- examples of how to use fresh lists.
11
+
9
12
{-# OPTIONS --without-K --safe #-}
10
13
11
14
module Data.List.Fresh where
Original file line number Diff line number Diff line change 4
4
-- Natural numbers
5
5
------------------------------------------------------------------------
6
6
7
+ -- See README.Data.Nat for examples of how to use and reason about
8
+ -- naturals.
9
+
7
10
{-# OPTIONS --without-K --safe #-}
8
11
9
12
module Data.Nat where
Original file line number Diff line number Diff line change 4
4
-- Natural numbers, basic types and operations
5
5
------------------------------------------------------------------------
6
6
7
+ -- See README.Data.Nat for examples of how to use and reason about
8
+ -- naturals.
9
+
7
10
{-# OPTIONS --without-K --safe #-}
8
11
9
12
module Data.Nat.Base where
You can’t perform that action at this time.
0 commit comments