adam@517
|
1 "Certified Programming with Dependent Types" code license information
|
adam@517
|
2 <http://adam.chlipala.net/cpdt/>
|
adam@517
|
3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
adam@517
|
4
|
adam@517
|
5 CAUTION: Most of the source files in this distribution are NOT
|
adam@517
|
6 open-source in the usual sense. See the comment at the beginning of
|
adam@517
|
7 each source file for its license, which is Creative Commons, oriented
|
adam@517
|
8 more toward free distribution of books than the usual collaborative
|
adam@517
|
9 model of open-source software. The author really is trying to keep
|
adam@517
|
10 you from remixing your own versions of the book, which MIT Press might
|
adam@517
|
11 not be too happy about.
|
adam@517
|
12
|
adam@517
|
13 However, a few of the library modules used here are sufficiently
|
adam@517
|
14 useful that they are released separately under a BSD license, included
|
adam@517
|
15 below. The author wants to repeat some advice from the book text,
|
adam@517
|
16 though: please don't use these library modules in real projects. They
|
adam@517
|
17 are not designed for any use beside getting the reader up and running
|
adam@517
|
18 quickly in reading the book. All of their content, including the
|
adam@517
|
19 "crush" functionality, is rather trivial to implement from scratch for
|
adam@517
|
20 your own projects, using the techniques that the book presents.
|
adam@517
|
21
|
adam@517
|
22
|
adam@517
|
23 The following license applies ONLY to the source files:
|
adam@517
|
24 CpdtTactics.v
|
adam@517
|
25 MoreSpecif.v
|
adam@517
|
26 DepList.v
|
adam@517
|
27
|
adam@517
|
28 ~~~~~~~~~~~
|
adam@517
|
29 BSD LICENSE
|
adam@517
|
30 ~~~~~~~~~~~
|
adam@517
|
31
|
adam@517
|
32 Copyright (c) 2006-2013, Adam Chlipala
|
adam@517
|
33 All rights reserved.
|
adam@517
|
34
|
adam@517
|
35 Redistribution and use in source and binary forms, with or without
|
adam@517
|
36 modification, are permitted provided that the following conditions are met:
|
adam@517
|
37
|
adam@517
|
38 - Redistributions of source code must retain the above copyright notice,
|
adam@517
|
39 this list of conditions and the following disclaimer.
|
adam@517
|
40 - Redistributions in binary form must reproduce the above copyright notice,
|
adam@517
|
41 this list of conditions and the following disclaimer in the documentation
|
adam@517
|
42 and/or other materials provided with the distribution.
|
adam@517
|
43 - The names of contributors may not be used to endorse or promote products
|
adam@517
|
44 derived from this software without specific prior written permission.
|
adam@517
|
45
|
adam@517
|
46 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
adam@517
|
47 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
adam@517
|
48 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
adam@517
|
49 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
adam@517
|
50 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
adam@517
|
51 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
adam@517
|
52 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
adam@517
|
53 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
adam@517
|
54 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
adam@517
|
55 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
adam@517
|
56 POSSIBILITY OF SUCH DAMAGE.
|