Skip to content

Commit 38d27da

Browse files
committed
Auto-generated commit
1 parent 569b199 commit 38d27da

File tree

3 files changed

+36
-31
lines changed

3 files changed

+36
-31
lines changed

CONTRIBUTORS

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Frank Kovacs <[email protected]>
2727
Golden Kumar <[email protected]>
2828
Gunj Joshi <[email protected]>
2929
Harshita Kalani <[email protected]>
30+
Hridyanshu <[email protected]>
3031
Jaimin Godhani <[email protected]>
3132
James Gelok <[email protected]>
3233
Jaysukh Makvana <[email protected]>

LICENSE

+34-30
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,44 @@ DEPENDENCIES & ATTRIBUTION
180180
The library links against the following external libraries or contains
181181
implementations from the following external libraries, which have their own
182182
licenses:
183+
184+
* Boost <http://www.boost.org/LICENSE_1_0.txt>
185+
186+
Boost Software License - Version 1.0 - August 17th, 2003
187+
188+
Permission is hereby granted, free of charge, to any person or organization
189+
obtaining a copy of the software and accompanying documentation covered by
190+
this license (the "Software") to use, reproduce, display, distribute,
191+
execute, and transmit the Software, and to prepare derivative works of the
192+
Software, and to permit third-parties to whom the Software is furnished to
193+
do so, all subject to the following:
194+
195+
The copyright notices in the Software and this entire statement, including
196+
the above license grant, this restriction and the following disclaimer,
197+
must be included in all copies of the Software, in whole or in part, and
198+
all derivative works of the Software, unless such copies or derivative
199+
works are solely in the form of machine-executable object code generated by
200+
a source language processor.
201+
202+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
203+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
204+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
205+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
206+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
207+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
208+
DEALINGS IN THE SOFTWARE.
209+
210+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
211+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
212+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
213+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
214+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
215+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
216+
DEALINGS IN THE SOFTWARE.
183217
Apache License
184218
Version 2.0, January 2004
185219
http://www.apache.org/licenses/
186220

187-
The library links against the following external libraries or contains
188-
implementations from the following external libraries, which have their own
189-
licenses:
190-
191221
* StatsFuns.jl <https://raw.githubusercontent.com/JuliaStats/StatsFuns.jl/
192222
e66dd973650c375bc1739c820e5b96bb5bd000a8/LICENSE.md>
193223

@@ -212,29 +242,3 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
212242
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
213243
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
214244

215-
* Boost <http://www.boost.org/LICENSE_1_0.txt>
216-
217-
Boost Software License - Version 1.0 - August 17th, 2003
218-
219-
Permission is hereby granted, free of charge, to any person or organization
220-
obtaining a copy of the software and accompanying documentation covered by
221-
this license (the "Software") to use, reproduce, display, distribute,
222-
execute, and transmit the Software, and to prepare derivative works of the
223-
Software, and to permit third-parties to whom the Software is furnished to
224-
do so, all subject to the following:
225-
226-
The copyright notices in the Software and this entire statement, including
227-
the above license grant, this restriction and the following disclaimer,
228-
must be included in all copies of the Software, in whole or in part, and
229-
all derivative works of the Software, unless such copies or derivative
230-
works are solely in the form of machine-executable object code generated by
231-
a source language processor.
232-
233-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
234-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
235-
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
236-
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
237-
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
238-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
239-
DEALINGS IN THE SOFTWARE.
240-

lowess/lib/lowess.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function lowess( x, y, n, f, nsteps, delta ) {
107107
i = 0; // index of current point
108108
do {
109109
while ( nright < n - 1 ) {
110-
// Move nleft, nright to the right if radius decreases:
110+
// Move `nleft`, `nright` to the right if radius decreases:
111111
d1 = x[ i ] - x[ nleft ];
112112
d2 = x[ nright + 1 ] - x[ i ];
113113

0 commit comments

Comments
 (0)