File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,30 @@ Hopefully this guide should make it easy to do so! Feel free to ask any
6
6
questions on the Agda mailing list. Before you start please read the
7
7
[ style-guide] ( https://github.com/agda/agda-stdlib/blob/master/notes/style-guide.md ) .
8
8
9
+ What is an acceptable contribution?
10
+ ===================================
11
+
12
+ - The contribution should be useful in a diverse set of areas.
13
+
14
+ - The bar for accepting contributions that use the FFI to depend on external
15
+ (i.e. Haskell, JavaScript) packages is much higher.
16
+
17
+ - If the same concept already exists in the library, there needs to be a * very* good
18
+ reason to add a different formalisation.
19
+
20
+ - There should be evidence that the code works. Usually this will be proofs, but sometimes
21
+ for purely computational contributions this will involve adding tests.
22
+
23
+ - It should use the minimal set of Agda features, i.e. it should normally use
24
+ the Agda option pragmas ` --without-K ` and ` --safe ` , with the occasional use of
25
+ ` --with-K ` , ` --sized ` , ` --guardedness ` in certain situations.
26
+
27
+ In general, if something is in a general undergraduate Computer Science or Mathematics
28
+ textbook it is probably (!) contributable.
29
+
30
+ Setup
31
+ =====
32
+
9
33
The typical workflow when contributing to the standard library's repository
10
34
is to interact with two remote versions of the repository:
11
35
You can’t perform that action at this time.
0 commit comments