-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrss.xml
More file actions
467 lines (397 loc) · 23.3 KB
/
Copy pathrss.xml
File metadata and controls
467 lines (397 loc) · 23.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>cpprefjp - C++日本語リファレンス</title>
<link href="https://cpprefjp.github.io" />
<updated>2026-07-09T17:01:51.949411</updated>
<id>31a57a39-478a-48a2-a16b-63666147edcb</id>
<entry>
<title>is_implicit_lifetime -- correct indent of sample</title>
<link href="https://cpprefjp.github.io/reference/type_traits/is_implicit_lifetime.html"/>
<id>aa2b2a03eb4ca45998a798ae48822468b6838c16:reference/type_traits/is_implicit_lifetime.md</id>
<updated>2026-07-09T23:13:16+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/type_traits/is_implicit_lifetime.md b/reference/type_traits/is_implicit_lifetime.md
index 9f10ce6f5..23f37b1cb 100644
--- a/reference/type_traits/is_implicit_lifetime.md
+++ b/reference/type_traits/is_implicit_lifetime.md
@@ -45,22 +45,23 @@ enum Enum {};
class Class {};
class NotTrivial {
public:
- ~NotTrivial() {}
+ ~NotTrivial() {}
};
-int main() {
- int i_array[1];
- NotTrivial nt_array[1];
-
- static_assert(std::is_implicit_lifetime&lt;int&gt;());
- static_assert(std::is_implicit_lifetime&lt;int*&gt;());
- static_assert(std::is_implicit_lifetime&lt;decltype(i_array)&gt;());
- static_assert(std::is_implicit_lifetime&lt;Enum&gt;());
- static_assert(std::is_implicit_lifetime&lt;Class&gt;());
- static_assert(!std::is_implicit_lifetime&lt;NotTrivial&gt;());
- static_assert(std::is_implicit_lifetime&lt;decltype(nt_array)&gt;());
- static_assert(std::is_implicit_lifetime&lt;std::pair&lt;int, int&gt;&gt;());
- static_assert(!std::is_implicit_lifetime&lt;std::pair&lt;int, NotTrivial&gt;&gt;());
+int main()
+{
+ int i_array[1];
+ NotTrivial nt_array[1];
+
+ static_assert(std::is_implicit_lifetime&lt;int&gt;());
+ static_assert(std::is_implicit_lifetime&lt;int*&gt;());
+ static_assert(std::is_implicit_lifetime&lt;decltype(i_array)&gt;());
+ static_assert(std::is_implicit_lifetime&lt;Enum&gt;());
+ static_assert(std::is_implicit_lifetime&lt;Class&gt;());
+ static_assert(!std::is_implicit_lifetime&lt;NotTrivial&gt;());
+ static_assert(std::is_implicit_lifetime&lt;decltype(nt_array)&gt;());
+ static_assert(std::is_implicit_lifetime&lt;std::pair&lt;int, int&gt;&gt;());
+ static_assert(!std::is_implicit_lifetime&lt;std::pair&lt;int, NotTrivial&gt;&gt;());
}
```
* std::is_implicit_lifetime[color ff0000]
</code></pre></summary>
<author>
<name>suomesta</name>
<email>shawn316michaels@gmail.com</email>
</author>
</entry>
<entry>
<title>static_assert のメッセージ省略を許可 [N3928] -- Merge pull request #1666 from cpprefjp/improve_outer_link_check</title>
<link href="https://cpprefjp.github.io/lang/cpp17/extending_static_assert.html"/>
<id>c53509c24c50a7aab31ab9138d8fe1b56a4de0f1:lang/cpp17/extending_static_assert.md</id>
<updated>2026-07-06T15:06:19+09:00</updated>
<summary type="html"><pre><code>diff --git a/lang/cpp17/extending_static_assert.md b/lang/cpp17/extending_static_assert.md
index b0d6ac338..f1269930e 100644
--- a/lang/cpp17/extending_static_assert.md
+++ b/lang/cpp17/extending_static_assert.md
@@ -52,7 +52,7 @@ example_static_assert.cpp:5:3: error: static_assert failed
## この機能が必要になった背景・経緯
`assert` は条件式のみを引数に取るのに対し、`static_assert` には診断メッセージを提供しなければならなかった。
-[Boost.StaticAssert](http://www.boost.org/doc/libs/release/doc/html/boost_staticassert.html) は以下のような `BOOST_STATIC_ASSERT` マクロを提供しており、
+[Boost.StaticAssert](https://www.boost.org/doc/libs/latest/libs/config/doc/html/index.html) は以下のような `BOOST_STATIC_ASSERT` マクロを提供しており、
`static_assert` の診断メッセージを省略できた:
```cpp
#define BOOST_STATIC_ASSERT(B) static_assert(B, #B)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>bernoulli_distribution -- Merge pull request #1666 from cpprefjp/improve_outer_link_check</title>
<link href="https://cpprefjp.github.io/reference/random/bernoulli_distribution.html"/>
<id>c53509c24c50a7aab31ab9138d8fe1b56a4de0f1:reference/random/bernoulli_distribution.md</id>
<updated>2026-07-06T15:06:19+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/bernoulli_distribution.md b/reference/random/bernoulli_distribution.md
index 0571fa9f5..d84492a77 100644
--- a/reference/random/bernoulli_distribution.md
+++ b/reference/random/bernoulli_distribution.md
@@ -118,4 +118,4 @@ int main()
## 参照
- [ベルヌーイ分布 - Wikipedia](https://ja.wikipedia.org/wiki/ベルヌーイ分布)
-- [ベルヌーイ分布(Bernoulli distribution) - NtRand](http://www.ntrand.com/jp/bernoulli-distribution/)
+- [ベルヌーイ分布(Bernoulli distribution) - NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/bernoulli-distribution)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>cauchy_distribution -- Merge pull request #1666 from cpprefjp/improve_outer_link_check</title>
<link href="https://cpprefjp.github.io/reference/random/cauchy_distribution.html"/>
<id>c53509c24c50a7aab31ab9138d8fe1b56a4de0f1:reference/random/cauchy_distribution.md</id>
<updated>2026-07-06T15:06:19+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/cauchy_distribution.md b/reference/random/cauchy_distribution.md
index 094c21117..afc7a2d05 100644
--- a/reference/random/cauchy_distribution.md
+++ b/reference/random/cauchy_distribution.md
@@ -125,4 +125,4 @@ int main()
### 参考
- [コーシー分布 - Wikipedia](https://ja.wikipedia.org/wiki/%E3%82%B3%E3%83%BC%E3%82%B7%E3%83%BC%E5%88%86%E5%B8%83)
-- [コーシー分布 - NtRand](http://www.ntrand.com/jp/cauchy-distribution/)
+- [コーシー分布 - NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/cauchy-distribution)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>exponential_distribution -- Merge pull request #1666 from cpprefjp/improve_outer_link_check</title>
<link href="https://cpprefjp.github.io/reference/random/exponential_distribution.html"/>
<id>c53509c24c50a7aab31ab9138d8fe1b56a4de0f1:reference/random/exponential_distribution.md</id>
<updated>2026-07-06T15:06:19+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/exponential_distribution.md b/reference/random/exponential_distribution.md
index b8f051c5c..74238337e 100644
--- a/reference/random/exponential_distribution.md
+++ b/reference/random/exponential_distribution.md
@@ -188,6 +188,6 @@ Phone call after 2.60918 minute wait
### 参考
- [指数分布 - Wikipedia](https://ja.wikipedia.org/wiki/指数分布)
-- [指数分布 - NtRand](http://www.ntrand.com/jp/exponential-distribution/)
+- [指数分布 - NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/exponential-distribution)
- [指数分布 - 統計学自習ノート](https://web.archive.org/web/20241204102039/http://aoki2.si.gunma-u.ac.jp/lecture/Bunpu/exponential.html)
- [指数分布とポアソン分布のいけない関係](http://www.slideshare.net/teramonagi/ss-11296227)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>extreme_value_distribution -- Merge pull request #1666 from cpprefjp/improve_outer_link_check</title>
<link href="https://cpprefjp.github.io/reference/random/extreme_value_distribution.html"/>
<id>c53509c24c50a7aab31ab9138d8fe1b56a4de0f1:reference/random/extreme_value_distribution.md</id>
<updated>2026-07-06T15:06:19+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/extreme_value_distribution.md b/reference/random/extreme_value_distribution.md
index d2a843602..023d00d24 100644
--- a/reference/random/extreme_value_distribution.md
+++ b/reference/random/extreme_value_distribution.md
@@ -128,4 +128,3 @@ int main()
### 参考
- [極値分布](https://ja.wikipedia.org/wiki/極値分布)
- [一般化極値分布 - MATLAB &amp; Simulink - MathWorks 日本](https://jp.mathworks.com/help/stats/generalized-extreme-value-distribution.html)
-- [極値分布とその応用に関する研究](http://www.seto.nanzan-u.ac.jp/msie/gr-thesis/ms/2005/osaki/02mm042.pdf)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>lognormal_distribution -- Merge pull request #1666 from cpprefjp/improve_outer_link_check</title>
<link href="https://cpprefjp.github.io/reference/random/lognormal_distribution.html"/>
<id>c53509c24c50a7aab31ab9138d8fe1b56a4de0f1:reference/random/lognormal_distribution.md</id>
<updated>2026-07-06T15:06:19+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/lognormal_distribution.md b/reference/random/lognormal_distribution.md
index c114f3cf5..7559dcd88 100644
--- a/reference/random/lognormal_distribution.md
+++ b/reference/random/lognormal_distribution.md
@@ -125,5 +125,5 @@ int main()
### 参考
- [対数正規分布 - Wikipedia](https://ja.wikipedia.org/wiki/%E5%AF%BE%E6%95%B0%E6%AD%A3%E8%A6%8F%E5%88%86%E5%B8%83)
-- [対数正規分布 - NtRand](http://www.ntrand.com/jp/log-normal-distribution/)
+- [対数正規分布 - NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/log-normal-distribution)
- [対数正規分布の仕組み - 小人さんの妄想](http://d.hatena.ne.jp/rikunora/20100418/p1)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>poisson_distribution -- Merge pull request #1666 from cpprefjp/improve_outer_link_check</title>
<link href="https://cpprefjp.github.io/reference/random/poisson_distribution.html"/>
<id>c53509c24c50a7aab31ab9138d8fe1b56a4de0f1:reference/random/poisson_distribution.md</id>
<updated>2026-07-06T15:06:19+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/poisson_distribution.md b/reference/random/poisson_distribution.md
index 345677858..f462e4331 100644
--- a/reference/random/poisson_distribution.md
+++ b/reference/random/poisson_distribution.md
@@ -167,7 +167,7 @@ Month 12: 1 earthquake(s)
### 参考
- [ポワソン分布 - Wikipedia](https://ja.wikipedia.org/wiki/ポアソン分布)
- [ポアソン分布 - 統計・データ解析](https://okumuralab.org/~okumura/stat/poisson.html)
-- [ポアソン分布 - NtRand](http://www.ntrand.com/jp/poisson-distribution/)
+- [ポアソン分布 - NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/poisson-distribution)
- [[データ分析]ポアソン分布 ~ 100年に1人の天才は何人現れる?:やさしい確率分布 - @IT](https://atmarkit.itmedia.co.jp/ait/articles/2407/11/news002.html)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>weibull_distribution -- Merge pull request #1666 from cpprefjp/improve_outer_link_check</title>
<link href="https://cpprefjp.github.io/reference/random/weibull_distribution.html"/>
<id>c53509c24c50a7aab31ab9138d8fe1b56a4de0f1:reference/random/weibull_distribution.md</id>
<updated>2026-07-06T15:06:19+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/weibull_distribution.md b/reference/random/weibull_distribution.md
index b47b88665..9c83b3bfa 100644
--- a/reference/random/weibull_distribution.md
+++ b/reference/random/weibull_distribution.md
@@ -129,5 +129,5 @@ int main()
### 参考
- [ワイブル分布 - Wikipedia](https://ja.wikipedia.org/wiki/ワイブル分布)
-- [ワイブル分布 = NtRand](http://www.ntrand.com/jp/weibull-distribution/)
+- [ワイブル分布 = NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/weibull-distribution)
- [疲労や破壊現象とワイブル分布](http://web.archive.org/web/20220706102605/http://www.mogami.com/notes/weibull.html)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>static_assert のメッセージ省略を許可 [N3928] -- リンク切れを修正</title>
<link href="https://cpprefjp.github.io/lang/cpp17/extending_static_assert.html"/>
<id>594ebb3d87d727e71200d1ea0839110ac2dfd76c:lang/cpp17/extending_static_assert.md</id>
<updated>2026-07-06T14:24:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/lang/cpp17/extending_static_assert.md b/lang/cpp17/extending_static_assert.md
index b0d6ac338..f1269930e 100644
--- a/lang/cpp17/extending_static_assert.md
+++ b/lang/cpp17/extending_static_assert.md
@@ -52,7 +52,7 @@ example_static_assert.cpp:5:3: error: static_assert failed
## この機能が必要になった背景・経緯
`assert` は条件式のみを引数に取るのに対し、`static_assert` には診断メッセージを提供しなければならなかった。
-[Boost.StaticAssert](http://www.boost.org/doc/libs/release/doc/html/boost_staticassert.html) は以下のような `BOOST_STATIC_ASSERT` マクロを提供しており、
+[Boost.StaticAssert](https://www.boost.org/doc/libs/latest/libs/config/doc/html/index.html) は以下のような `BOOST_STATIC_ASSERT` マクロを提供しており、
`static_assert` の診断メッセージを省略できた:
```cpp
#define BOOST_STATIC_ASSERT(B) static_assert(B, #B)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>bernoulli_distribution -- リンク切れを修正</title>
<link href="https://cpprefjp.github.io/reference/random/bernoulli_distribution.html"/>
<id>594ebb3d87d727e71200d1ea0839110ac2dfd76c:reference/random/bernoulli_distribution.md</id>
<updated>2026-07-06T14:24:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/bernoulli_distribution.md b/reference/random/bernoulli_distribution.md
index 0571fa9f5..d84492a77 100644
--- a/reference/random/bernoulli_distribution.md
+++ b/reference/random/bernoulli_distribution.md
@@ -118,4 +118,4 @@ int main()
## 参照
- [ベルヌーイ分布 - Wikipedia](https://ja.wikipedia.org/wiki/ベルヌーイ分布)
-- [ベルヌーイ分布(Bernoulli distribution) - NtRand](http://www.ntrand.com/jp/bernoulli-distribution/)
+- [ベルヌーイ分布(Bernoulli distribution) - NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/bernoulli-distribution)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>cauchy_distribution -- リンク切れを修正</title>
<link href="https://cpprefjp.github.io/reference/random/cauchy_distribution.html"/>
<id>594ebb3d87d727e71200d1ea0839110ac2dfd76c:reference/random/cauchy_distribution.md</id>
<updated>2026-07-06T14:24:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/cauchy_distribution.md b/reference/random/cauchy_distribution.md
index 094c21117..afc7a2d05 100644
--- a/reference/random/cauchy_distribution.md
+++ b/reference/random/cauchy_distribution.md
@@ -125,4 +125,4 @@ int main()
### 参考
- [コーシー分布 - Wikipedia](https://ja.wikipedia.org/wiki/%E3%82%B3%E3%83%BC%E3%82%B7%E3%83%BC%E5%88%86%E5%B8%83)
-- [コーシー分布 - NtRand](http://www.ntrand.com/jp/cauchy-distribution/)
+- [コーシー分布 - NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/cauchy-distribution)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>exponential_distribution -- リンク切れを修正</title>
<link href="https://cpprefjp.github.io/reference/random/exponential_distribution.html"/>
<id>594ebb3d87d727e71200d1ea0839110ac2dfd76c:reference/random/exponential_distribution.md</id>
<updated>2026-07-06T14:24:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/exponential_distribution.md b/reference/random/exponential_distribution.md
index b8f051c5c..74238337e 100644
--- a/reference/random/exponential_distribution.md
+++ b/reference/random/exponential_distribution.md
@@ -188,6 +188,6 @@ Phone call after 2.60918 minute wait
### 参考
- [指数分布 - Wikipedia](https://ja.wikipedia.org/wiki/指数分布)
-- [指数分布 - NtRand](http://www.ntrand.com/jp/exponential-distribution/)
+- [指数分布 - NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/exponential-distribution)
- [指数分布 - 統計学自習ノート](https://web.archive.org/web/20241204102039/http://aoki2.si.gunma-u.ac.jp/lecture/Bunpu/exponential.html)
- [指数分布とポアソン分布のいけない関係](http://www.slideshare.net/teramonagi/ss-11296227)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>extreme_value_distribution -- リンク切れを修正</title>
<link href="https://cpprefjp.github.io/reference/random/extreme_value_distribution.html"/>
<id>594ebb3d87d727e71200d1ea0839110ac2dfd76c:reference/random/extreme_value_distribution.md</id>
<updated>2026-07-06T14:24:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/extreme_value_distribution.md b/reference/random/extreme_value_distribution.md
index d2a843602..023d00d24 100644
--- a/reference/random/extreme_value_distribution.md
+++ b/reference/random/extreme_value_distribution.md
@@ -128,4 +128,3 @@ int main()
### 参考
- [極値分布](https://ja.wikipedia.org/wiki/極値分布)
- [一般化極値分布 - MATLAB &amp; Simulink - MathWorks 日本](https://jp.mathworks.com/help/stats/generalized-extreme-value-distribution.html)
-- [極値分布とその応用に関する研究](http://www.seto.nanzan-u.ac.jp/msie/gr-thesis/ms/2005/osaki/02mm042.pdf)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>lognormal_distribution -- リンク切れを修正</title>
<link href="https://cpprefjp.github.io/reference/random/lognormal_distribution.html"/>
<id>594ebb3d87d727e71200d1ea0839110ac2dfd76c:reference/random/lognormal_distribution.md</id>
<updated>2026-07-06T14:24:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/lognormal_distribution.md b/reference/random/lognormal_distribution.md
index c114f3cf5..7559dcd88 100644
--- a/reference/random/lognormal_distribution.md
+++ b/reference/random/lognormal_distribution.md
@@ -125,5 +125,5 @@ int main()
### 参考
- [対数正規分布 - Wikipedia](https://ja.wikipedia.org/wiki/%E5%AF%BE%E6%95%B0%E6%AD%A3%E8%A6%8F%E5%88%86%E5%B8%83)
-- [対数正規分布 - NtRand](http://www.ntrand.com/jp/log-normal-distribution/)
+- [対数正規分布 - NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/log-normal-distribution)
- [対数正規分布の仕組み - 小人さんの妄想](http://d.hatena.ne.jp/rikunora/20100418/p1)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>poisson_distribution -- リンク切れを修正</title>
<link href="https://cpprefjp.github.io/reference/random/poisson_distribution.html"/>
<id>594ebb3d87d727e71200d1ea0839110ac2dfd76c:reference/random/poisson_distribution.md</id>
<updated>2026-07-06T14:24:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/poisson_distribution.md b/reference/random/poisson_distribution.md
index 345677858..f462e4331 100644
--- a/reference/random/poisson_distribution.md
+++ b/reference/random/poisson_distribution.md
@@ -167,7 +167,7 @@ Month 12: 1 earthquake(s)
### 参考
- [ポワソン分布 - Wikipedia](https://ja.wikipedia.org/wiki/ポアソン分布)
- [ポアソン分布 - 統計・データ解析](https://okumuralab.org/~okumura/stat/poisson.html)
-- [ポアソン分布 - NtRand](http://www.ntrand.com/jp/poisson-distribution/)
+- [ポアソン分布 - NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/poisson-distribution)
- [[データ分析]ポアソン分布 ~ 100年に1人の天才は何人現れる?:やさしい確率分布 - @IT](https://atmarkit.itmedia.co.jp/ait/articles/2407/11/news002.html)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>weibull_distribution -- リンク切れを修正</title>
<link href="https://cpprefjp.github.io/reference/random/weibull_distribution.html"/>
<id>594ebb3d87d727e71200d1ea0839110ac2dfd76c:reference/random/weibull_distribution.md</id>
<updated>2026-07-06T14:24:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/random/weibull_distribution.md b/reference/random/weibull_distribution.md
index b47b88665..9c83b3bfa 100644
--- a/reference/random/weibull_distribution.md
+++ b/reference/random/weibull_distribution.md
@@ -129,5 +129,5 @@ int main()
### 参考
- [ワイブル分布 - Wikipedia](https://ja.wikipedia.org/wiki/ワイブル分布)
-- [ワイブル分布 = NtRand](http://www.ntrand.com/jp/weibull-distribution/)
+- [ワイブル分布 = NtRand](https://www.ntrand.com/ja/docs/gallery-of-distributions/weibull-distribution)
- [疲労や破壊現象とワイブル分布](http://web.archive.org/web/20220706102605/http://www.mogami.com/notes/weibull.html)
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
</feed>