Skip to content

Commit 9b00680

Browse files
author
Daniel Dahan
committed
updated license to MIT
1 parent 31180f6 commit 9b00680

File tree

3 files changed

+73
-59
lines changed

3 files changed

+73
-59
lines changed

LICENSE.md

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
1-
Copyright (C) 2015 - 2018, Daniel Dahan and CosmicMind, Inc. <http://cosmicmind.com>. All rights reserved.
1+
The MIT License (MIT)
22

3-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
3+
Copyright (C) 2019, CosmicMind, Inc. <http://cosmicmind.com>.
4+
All rights reserved.
45

5-
* Redistributions of source code must retain the above copyright notice, this
6-
list of conditions and the following disclaimer.
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
712

8-
* Redistributions in binary form must reproduce the above copyright notice,
9-
this list of conditions and the following disclaimer in the documentation
10-
and/or other materials provided with the distribution.
13+
The above copyright notice and this permission notice shall be included in
14+
all copies or substantial portions of the Software.
1115

12-
* Neither the name of CosmicMind nor the names of its
13-
contributors may be used to endorse or promote products derived from
14-
this software without specific prior written permission.
15-
16-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22+
THE SOFTWARE.

README.md

Lines changed: 33 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,21 @@ The following are samples to see how Algorithm may be used within your applicati
5454

5555
* Visit the [Samples](https://github.com/CosmicMind/Samples) repo to see example projects using Algorithm.
5656

57-
* [Probability](#probability)
58-
* [ExpectedValue](#expectedvalue)
59-
* [DoublyLinkedList](#doublylinkedlist)
60-
* [Stack](#stack)
61-
* [Queue](#queue)
62-
* [Deque](#deque)
63-
* [RedBlackTree](#redblacktree)
64-
* [SortedSet](#sortedset)
65-
* [SortedMultiSet](#sortedmultiset)
66-
* [SortedDictionary](#sorteddictionary)
67-
* [SortedMultiDictionary](#sortedmultidictionary)
57+
- [Samples](#samples)
58+
- [Probability](#probability)
59+
- [Basic Probability](#basic-probability)
60+
- [Conditional Probability](#conditional-probability)
61+
- [Expected Value](#expected-value)
62+
- [DoublyLinkedList](#doublylinkedlist)
63+
- [Stack](#stack)
64+
- [Queue](#queue)
65+
- [Deque](#deque)
66+
- [RedBlackTree](#redblacktree)
67+
- [SortedSet](#sortedset)
68+
- [SortedMultiSet](#sortedmultiset)
69+
- [SortedDictionary](#sorteddictionary)
70+
- [SortedMultiDictionary](#sortedmultidictionary)
71+
- [License](#license)
6872

6973
<a name="probability"></a>
7074
## Probability
@@ -300,19 +304,25 @@ for student in students {
300304

301305
## License
302306

303-
Copyright (C) 2015 - 2018, Daniel Dahan and CosmicMind, Inc. <http://cosmicmind.com>. All rights reserved.
307+
The MIT License (MIT)
304308

305-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
309+
Copyright (C) 2019, CosmicMind, Inc. <http://cosmicmind.com>.
310+
All rights reserved.
306311

307-
* Redistributions of source code must retain the above copyright notice, this
308-
list of conditions and the following disclaimer.
312+
Permission is hereby granted, free of charge, to any person obtaining a copy
313+
of this software and associated documentation files (the "Software"), to deal
314+
in the Software without restriction, including without limitation the rights
315+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
316+
copies of the Software, and to permit persons to whom the Software is
317+
furnished to do so, subject to the following conditions:
309318

310-
* Redistributions in binary form must reproduce the above copyright notice,
311-
this list of conditions and the following disclaimer in the documentation
312-
and/or other materials provided with the distribution.
319+
The above copyright notice and this permission notice shall be included in
320+
all copies or substantial portions of the Software.
313321

314-
* Neither the name of CosmicMind nor the names of its
315-
contributors may be used to endorse or promote products derived from
316-
this software without specific prior written permission.
317-
318-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
322+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
323+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
324+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
325+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
326+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
327+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
328+
THE SOFTWARE.

Sources/LICENSE

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,22 @@
1-
/*
2-
* The MIT License (MIT)
3-
*
4-
* Copyright (C) 2019, CosmicMind, Inc. <http://cosmicmind.com>.
5-
* All rights reserved.
6-
*
7-
* Permission is hereby granted, free of charge, to any person obtaining a copy
8-
* of this software and associated documentation files (the "Software"), to deal
9-
* in the Software without restriction, including without limitation the rights
10-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11-
* copies of the Software, and to permit persons to whom the Software is
12-
* furnished to do so, subject to the following conditions:
13-
*
14-
* The above copyright notice and this permission notice shall be included in
15-
* all copies or substantial portions of the Software.
16-
*
17-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23-
* THE SOFTWARE.
24-
*/
1+
The MIT License (MIT)
2+
3+
Copyright (C) 2019, CosmicMind, Inc. <http://cosmicmind.com>.
4+
All rights reserved.
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in
14+
all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22+
THE SOFTWARE.

0 commit comments

Comments
 (0)