Commit Graph

60 Commits

Author SHA1 Message Date
Martin Baker
80636c0f24 add to proof documentation 2019-02-23 08:32:21 +00:00
Jorge Acereda
b8a1382b44 Add myself to CONTRIBUTORS 2018-04-02 19:21:46 +02:00
Caleb Case
20ee4d5a09 Add the Vect version of dropElem.
Inspired by the request from Kevin Meredith in the Idris mailing list for an
implementation of removeElem [1]. This borrows directly from the existing work
in the List implementation and the work in 'Type-Driven Development with Idris'
by Edwin Brady.

[1]: https://groups.google.com/d/msg/idris-lang/UKhvTKS6TfE/MEK9akzYBwAJ
2017-10-18 06:58:20 -04:00
Taran Lynn
f670667876 Added my name (Taran Lynn) to CONTRIBUTORS. 2017-10-15 20:46:44 -07:00
Jason Felice
19624c7e19 Support backticked operators in sections (#4119)
* Postfix sections for ticked ops, e.g. (1 `plus`) and prefix sections for ticked ops, e.g. (`plus` 1)
2017-10-12 19:51:06 +02:00
Ahmad Salim Al-Sibahi
d656534793 Merge pull request #4091 from jdevuyst/fix-issue-4090
Implement primitiveNotEq using really_believe_me (not postulate)
2017-10-08 15:54:44 +02:00
Jonas De Vuyst
526a39fdf5 Add myself to CONTRIBUTORS 2017-10-06 23:40:03 +08:00
Alex Queiroz
df7b19a55f Add myself to CONTRIBUTORS 2017-10-04 00:02:53 +02:00
Joomy Korkut
59ea372e34 Update CHANGELOG and CONTRIBUTORS 2017-09-29 08:08:13 -04:00
Rui Barreiro
0a83894e96 added my self to contributors 2017-09-15 07:54:28 +01:00
Michael Morgan
6a031c57d2 add Interfaces.Zippable to contrib
This module defines the interface `Zippable (t : Type -> Type)`, which
abstracts `zipWith` and related operations into an interface.

Included are implementations of Zippable for List, Stream, and Vect, in
addition to generalizations for Maybe and Either.
2017-08-24 14:34:08 -05:00
Thomas Scholtes
311e3be85e
Simplify JS code generation
We declare a Monoid instance for CGStats. This simplifies merging of
generated code significantly.
2017-08-12 13:58:30 +02:00
Reynir Björnsson
09ab243dda Update CONTRIBUTORS
I have changed lastname (sorry)
2017-03-29 20:29:23 +02:00
Edwin Brady
e0cc0cf482 Merge pull request #3629 from atacratic/DataZZProofs
Add proofs of ring laws to Data.ZZ in contrib
2017-03-04 21:59:44 +00:00
Chris Gibbs
b75f32f143 Add myself to CONTRIBUTORS 2017-01-21 20:44:40 +00:00
Synthetica9
c331c16e47 Add myself to CONTRIBUTORS, as requested. 2017-01-16 16:47:47 +01:00
Vyacheslav Shebanov
7eed681dce add myself to contributors 2016-12-05 13:21:05 +03:00
Jan de Muijnck-Hughes
908053d1d0 Updated CONTRIBUTORS to reflect actual contributors.
Sadly we haven't be good at keeping the list of contributors up-to-date.

This fix takes the unique list fo contributors from the git logs, and
updated the list in CONTRIBUTORS. There may be a duplication of contributors
whose usernames couldn't be resolved to proper names. Duplicate names were
remove in the first place.
2016-11-28 19:46:38 +00:00
(λ _ λ)
0df127016a Change Instance to implementation (#3404)
* change instance to implementation in string literal

* change instance to implementation in docs

* replace code level instance symbol with implementation
2016-09-10 21:06:44 +02:00
Vitaly Bragilevsky
9cc36e86af Make totality checker to report partial functions correctly (fix #2884)
Totality checker incorrectly reported some partial functions with complex
arguments (data constructors inside other data constructors) as total.
For example, these functions were considered total:

h : (Bool, Bool) -> Bool
h (True, x) = True
h (y, True) = True

data PP : Type where
  MkPP : Int -> PP

f : PP -> Bool
f (MkPP 0) = True
f (MkPP 1) = True
f (MkPP 2) = True

This commit fixes this and now such functions are reported as partial.
To fix this we generate more clauses which cover more possible cases.
2016-08-12 14:45:10 +03:00
Björn Aili
0af83660da Add regression tests for #3275 2016-08-07 09:56:29 -07:00
Echo Nolan
65ec8f2e58 Alphabetize CONTRIBUTORS 2016-07-14 18:24:34 -07:00
Echo Nolan
755b36a881 Add Echo Nolan to CONTRIBUTORS 2016-07-14 18:17:34 -07:00
Eric Weinstein
6277bd188b Add Eric Weinstein to CONTRIBUTORS (#3256) 2016-07-08 09:20:32 +02:00
Aistis Raulinaitis
bdf2789fc1 File Modes CHANGELOG 2016-02-09 02:01:54 -08:00
Edwin Brady
9b2ca0488e Merge branch 'ioexcept-ffi' of https://github.com/aaronc/Idris-dev into aaronc-ioexcept-ffi
Conflicts:
	libs/base/Control/IOExcept.idr
2016-01-20 16:09:54 +00:00
Niklas Larsson
5a8536ad14 Merge pull request #2677 from zgrannan/repl-check-operator
Parse operators as expressions in the REPL
2015-10-23 13:51:27 +02:00
Jeremy W. Sherman
b329791cf1 Add @jeremy-w to CONTRIBUTORS
As encouraged by @melted in
https://github.com/idris-lang/Idris-dev/pull/2728#issuecomment-147667042
2015-10-13 14:44:41 -04:00
Zack Grannan
5f89889be4 Update CONTRIBUTORS 2015-10-05 21:41:47 -07:00
Sean Hunt
b9e9c52803 Add myself to CONTRIBUTORS. 2015-09-10 09:25:39 -04:00
Guglielmo Fachini
c934905ac8 Add myself as contributor for #2373 and #2569 2015-09-05 22:39:47 +02:00
Edwin Brady
0b68452037 Added SVG logos 2015-06-22 15:32:38 +01:00
Timo Petteri Sinnemäki
58a11c95de Added self to contributors list. 2015-06-01 17:11:03 +03:00
Niklas Larsson
e7f9257ba2 Adding myself 2015-04-26 18:12:09 +02:00
JP Smith
5f0dbd780e clarify failing searches 2015-04-02 11:51:30 -05:00
Adam Sandberg Eriksson
642efb3386 Instance docs: Update CHANGELOG and CONTRIBUTORS 2015-03-09 17:13:29 +01:00
David Raymond Christiansen
9a4ee342ed Re-alphabetize CONTRIBUTORS 2015-02-11 21:41:28 +01:00
Jakob Brünker
b13b6da493 update contributors to include myself
since I have submitted two pull requests which have been accepted,
D. Christiansen suggested I should be in this file.
2015-02-10 16:39:21 +01:00
Alexander Shabalin
1b4bb5fd03 Update CONTRIBUTORS 2014-11-16 22:48:51 +03:00
Alyssa Carter
008bf72b29 Adding Alyssa Carter to CONTRIBUTORS 2014-07-24 13:00:29 -07:00
Carter Charbonneau
97a2c74ee0 Add Functor Monad and Applicative id instances 2014-07-23 15:36:42 -06:00
mrb
dfa272d156 suc{Max,Min}{L,R} + add mrb to CONTRIBUTORS 2014-06-29 14:14:15 -04:00
Jan Bessai
6a3aac2573 Added myself to contributors 2014-06-07 22:44:17 +02:00
Paul Koerbitz
cc92419dce Add myself to the CONTRIBUTORS file 2014-05-01 16:21:13 +02:00
Kester Tong
b16871f416 Adds Google to contributors list 2014-04-28 20:14:06 -04:00
Edwin Brady
28209459c2 Merge branch 'master' of github.com:idris-lang/Idris-dev 2014-04-20 21:28:46 +01:00
Edwin Brady
85ff9c2935 Coverage checker fix
If a candidate case fails with a 'recoverable' unification error (i.e.
one which could be fixed by allowing more reduction somewhere) then it
should be considered valid for coverage checking purposes.

Fixes #1069 (and possibly some others, not checked yet!)

(There is, I think a better fix, involving better generation of
candidate cases, which I will leave for another time)
2014-04-20 21:26:47 +01:00
Matus Tejiscak
8c6939d682 Add some UTF8 to CONTRIBUTORS. 2014-04-20 16:59:12 +01:00
Edwin Brady
8bf2f8ab12 Merge pull request #1090 from david-christiansen/rasmussen-credit
Give Philip credit in CHANGELOG and CONTRIBUTORS
2014-04-20 16:55:29 +01:00
David Raymond Christiansen
e4678657b1 Give Philip credit in CHANGELOG and CONTRIBUTORS
This adds IdrisDoc to these places.
2014-04-20 17:54:02 +02:00