scirs2-special 0.2.0

Special functions module for SciRS2 (scirs2-special)
Documentation
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
//! Enhanced hypergeometric functions with convergence acceleration
//!
//! This module provides improved implementations of hypergeometric functions
//! with advanced convergence acceleration techniques.
//!
//! ## Key Features
//!
//! 1. **Levin u-transform**: Accelerates slowly converging series
//! 2. **Continued fractions**: Alternative representations for better convergence
//! 3. **Transformation formulas**: Analytic continuation to extended regions
//! 4. **Special case handling**: Optimized computation for specific parameter values
//!
//! ## Mathematical Background
//!
//! The hypergeometric function ₂F₁(a,b;c;z) is defined by the series:
//! ```text
//! ₂F₁(a,b;c;z) = Σ_{n=0}^∞ (a)_n (b)_n / ((c)_n n!) z^n
//! ```
//!
//! This series converges for |z| < 1 but can be analytically continued
//! to the entire complex plane (cut along [1, ∞)).

use crate::error::{SpecialError, SpecialResult};
use crate::gamma::{gamma, gammaln};
use scirs2_core::numeric::{Float, FromPrimitive};
use std::fmt::Debug;
use std::ops::{AddAssign, MulAssign, SubAssign};

/// Helper to convert f64 constants to generic Float type
#[inline(always)]
fn const_f64<F: Float + FromPrimitive>(value: f64) -> F {
    F::from(value).unwrap_or_else(|| {
        if value > 0.0 {
            F::infinity()
        } else if value < 0.0 {
            F::neg_infinity()
        } else {
            F::zero()
        }
    })
}

/// Maximum number of terms for series computations
const MAX_SERIES_TERMS: usize = 500;

/// Tolerance for convergence
const CONVERGENCE_TOL: f64 = 1e-15;

/// Enhanced hypergeometric function ₂F₁(a,b;c;z) with convergence acceleration
///
/// This implementation uses:
/// - Direct series for |z| < 0.5
/// - Transformation formulas for 0.5 ≤ |z| < 1
/// - Levin u-transform for slow convergence
/// - Pfaff/Euler transformations for z > 1 (via analytic continuation)
///
/// # Arguments
/// * `a` - First parameter
/// * `b` - Second parameter
/// * `c` - Third parameter (must not be 0, -1, -2, ...)
/// * `z` - Argument
///
/// # Returns
/// * Value of ₂F₁(a,b;c;z)
#[allow(dead_code)]
pub fn hyp2f1_enhanced<F>(a: F, b: F, c: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign + SubAssign,
{
    let a_f64 = a
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert a to f64".to_string()))?;
    let b_f64 = b
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert b to f64".to_string()))?;
    let c_f64 = c
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert c to f64".to_string()))?;
    let z_f64 = z
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert z to f64".to_string()))?;

    // Check for poles in c
    if c_f64 <= 0.0 && c_f64.fract() == 0.0 {
        return Err(SpecialError::DomainError(format!(
            "c must not be 0 or negative integer, got {c_f64}"
        )));
    }

    // Special cases
    if z == F::zero() {
        return Ok(F::one());
    }

    // Terminating series: if a or b is a non-positive integer
    if (a_f64 <= 0.0 && a_f64.fract() == 0.0) || (b_f64 <= 0.0 && b_f64.fract() == 0.0) {
        return hyp2f1_terminating(a, b, c, z);
    }

    // z = 1: Gauss's theorem
    if (z_f64 - 1.0).abs() < 1e-14 {
        return hyp2f1_at_one(a, b, c);
    }

    // Choose algorithm based on z value
    let abs_z = z_f64.abs();

    if abs_z <= 0.5 {
        // Direct series with Levin acceleration
        hyp2f1_series_accelerated(a, b, c, z)
    } else if abs_z < 0.9 {
        // Use Pfaff transformation for better convergence
        hyp2f1_pfaff_transform(a, b, c, z)
    } else if abs_z < 1.0 {
        // Use Euler transformation near z = 1
        hyp2f1_euler_transform(a, b, c, z)
    } else if z_f64 > 1.0 {
        // Analytic continuation for z > 1
        hyp2f1_analytic_continuation_positive(a, b, c, z)
    } else {
        // z < -1: use different transformation
        hyp2f1_analytic_continuation_negative(a, b, c, z)
    }
}

/// Series computation with Levin u-transform acceleration
#[allow(dead_code)]
fn hyp2f1_series_accelerated<F>(a: F, b: F, c: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign,
{
    // Compute series terms and apply Levin u-transform
    let mut terms = Vec::with_capacity(MAX_SERIES_TERMS);
    let mut term = F::one();
    let mut partial_sum = F::one();

    terms.push(F::one());

    for n in 1..MAX_SERIES_TERMS {
        let n_f = const_f64::<F>(n as f64);
        let n_minus_1 = const_f64::<F>((n - 1) as f64);

        // term_n = term_{n-1} * (a+n-1)(b+n-1)/(c+n-1) * z/n
        let numerator = (a + n_minus_1) * (b + n_minus_1);
        let denominator = (c + n_minus_1) * n_f;
        term = term * numerator * z / denominator;

        partial_sum += term;
        terms.push(partial_sum);

        // Check for convergence
        if term.abs() < const_f64::<F>(CONVERGENCE_TOL) * partial_sum.abs() {
            return Ok(partial_sum);
        }
    }

    // If direct series didn't converge well, apply Levin u-transform
    if terms.len() > 10 {
        return levin_u_transform(&terms);
    }

    Ok(partial_sum)
}

/// Levin u-transform for series acceleration
///
/// The Levin u-transform is a powerful sequence transformation for
/// accelerating the convergence of slowly converging series.
#[allow(dead_code)]
fn levin_u_transform<F>(partial_sums: &[F]) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug,
{
    let n = partial_sums.len();
    if n < 4 {
        return Ok(*partial_sums.last().unwrap_or(&F::zero()));
    }

    // Use Wynn's epsilon algorithm which is related to Levin transform
    // but more numerically stable
    let mut epsilon = vec![vec![F::zero(); n + 1]; n + 1];

    // Initialize with partial sums
    for (i, &s) in partial_sums.iter().enumerate() {
        epsilon[0][i] = F::zero();
        epsilon[1][i] = s;
    }

    // Compute epsilon table
    for k in 2..=n {
        for i in 0..=(n - k) {
            let diff = epsilon[k - 1][i + 1] - epsilon[k - 1][i];
            if diff.abs() < const_f64::<F>(1e-100) {
                // Avoid division by tiny numbers
                epsilon[k][i] = epsilon[k - 2][i + 1];
            } else {
                epsilon[k][i] = epsilon[k - 2][i + 1] + F::one() / diff;
            }
        }
    }

    // The best estimate is the last even column entry
    let best_col = if n.is_multiple_of(2) { n } else { n - 1 };
    Ok(epsilon[best_col][0])
}

/// Terminating series for non-positive integer a or b
#[allow(dead_code)]
fn hyp2f1_terminating<F>(a: F, b: F, c: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign,
{
    let a_f64 = a
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert a to f64".to_string()))?;
    let b_f64 = b
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert b to f64".to_string()))?;

    // Determine the terminating parameter
    let n_terms = if a_f64 <= 0.0 && a_f64.fract() == 0.0 {
        (-a_f64) as usize
    } else if b_f64 <= 0.0 && b_f64.fract() == 0.0 {
        (-b_f64) as usize
    } else {
        return Err(SpecialError::ValueError(
            "Not a terminating series".to_string(),
        ));
    };

    let mut sum = F::one();
    let mut term = F::one();

    for n in 1..=n_terms {
        let n_f = const_f64::<F>(n as f64);
        let n_minus_1 = const_f64::<F>((n - 1) as f64);

        let numerator = (a + n_minus_1) * (b + n_minus_1);
        let denominator = (c + n_minus_1) * n_f;
        term = term * numerator * z / denominator;
        sum += term;
    }

    Ok(sum)
}

/// Gauss's theorem for ₂F₁(a,b;c;1)
///
/// When z = 1 and Re(c - a - b) > 0:
/// ₂F₁(a,b;c;1) = Γ(c)Γ(c-a-b) / (Γ(c-a)Γ(c-b))
#[allow(dead_code)]
fn hyp2f1_at_one<F>(a: F, b: F, c: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign,
{
    let c_minus_a_minus_b = c - a - b;
    let cmab_f64 = c_minus_a_minus_b
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Conversion failed".to_string()))?;

    if cmab_f64 <= 0.0 {
        return Err(SpecialError::DomainError(
            "₂F₁(a,b;c;1) diverges when c - a - b ≤ 0".to_string(),
        ));
    }

    // Use logarithms for numerical stability
    let log_gamma_c = gammaln(c);
    let log_gamma_cmab = gammaln(c_minus_a_minus_b);
    let log_gamma_cma = gammaln(c - a);
    let log_gamma_cmb = gammaln(c - b);

    let log_result = log_gamma_c + log_gamma_cmab - log_gamma_cma - log_gamma_cmb;

    Ok(log_result.exp())
}

/// Pfaff transformation for 0.5 ≤ |z| < 1
///
/// ₂F₁(a,b;c;z) = (1-z)^(-a) ₂F₁(a, c-b; c; z/(z-1))
#[allow(dead_code)]
fn hyp2f1_pfaff_transform<F>(a: F, b: F, c: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign + SubAssign,
{
    let one_minus_z = F::one() - z;
    let z_transformed = z / (z - F::one());

    // The transformed z should have smaller absolute value
    let factor = one_minus_z.powf(-a);

    // Compute ₂F₁(a, c-b; c; z/(z-1)) with the series
    let transformed_result = hyp2f1_series_accelerated(a, c - b, c, z_transformed)?;

    Ok(factor * transformed_result)
}

/// Euler transformation for z near 1
///
/// ₂F₁(a,b;c;z) = (1-z)^(c-a-b) ₂F₁(c-a, c-b; c; z)
#[allow(dead_code)]
fn hyp2f1_euler_transform<F>(a: F, b: F, c: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign + SubAssign,
{
    let one_minus_z = F::one() - z;
    let exponent = c - a - b;

    // (1-z)^(c-a-b) factor
    let factor = one_minus_z.powf(exponent);

    // Compute ₂F₁(c-a, c-b; c; z)
    let transformed_result = hyp2f1_series_accelerated(c - a, c - b, c, z)?;

    Ok(factor * transformed_result)
}

/// Analytic continuation for z > 1
///
/// Uses the connection formula to express ₂F₁(a,b;c;z) in terms of
/// functions evaluated at 1/z
#[allow(dead_code)]
fn hyp2f1_analytic_continuation_positive<F>(a: F, b: F, c: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign + SubAssign,
{
    let z_inv = F::one() / z;

    // Connection formula:
    // ₂F₁(a,b;c;z) = Γ(c)Γ(b-a)/(Γ(b)Γ(c-a)) * (-z)^(-a) * ₂F₁(a, a-c+1; a-b+1; 1/z)
    //              + Γ(c)Γ(a-b)/(Γ(a)Γ(c-b)) * (-z)^(-b) * ₂F₁(b, b-c+1; b-a+1; 1/z)

    // Compute the first term
    let neg_z = -z;
    let term1_coeff = gamma(c) * gamma(b - a) / (gamma(b) * gamma(c - a));
    let term1_power = neg_z.powf(-a);
    let term1_hyp = hyp2f1_series_accelerated(a, a - c + F::one(), a - b + F::one(), z_inv)?;

    // Compute the second term
    let term2_coeff = gamma(c) * gamma(a - b) / (gamma(a) * gamma(c - b));
    let term2_power = neg_z.powf(-b);
    let term2_hyp = hyp2f1_series_accelerated(b, b - c + F::one(), b - a + F::one(), z_inv)?;

    Ok(term1_coeff * term1_power * term1_hyp + term2_coeff * term2_power * term2_hyp)
}

/// Analytic continuation for z < -1
#[allow(dead_code)]
fn hyp2f1_analytic_continuation_negative<F>(a: F, b: F, c: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign + SubAssign,
{
    // For z < -1, we use transformation formulas
    // The principal branch uses the same connection formula

    let z_inv = F::one() / z;

    // Use the same formula as for positive z > 1
    let neg_z = -z;
    let term1_coeff = gamma(c) * gamma(b - a) / (gamma(b) * gamma(c - a));
    let term1_power = neg_z.powf(-a);
    let term1_hyp = hyp2f1_series_accelerated(a, a - c + F::one(), a - b + F::one(), z_inv)?;

    let term2_coeff = gamma(c) * gamma(a - b) / (gamma(a) * gamma(c - b));
    let term2_power = neg_z.powf(-b);
    let term2_hyp = hyp2f1_series_accelerated(b, b - c + F::one(), b - a + F::one(), z_inv)?;

    Ok(term1_coeff * term1_power * term1_hyp + term2_coeff * term2_power * term2_hyp)
}

/// Enhanced confluent hypergeometric function ₁F₁(a;b;z)
///
/// Uses multiple algorithms for different parameter ranges:
/// - Direct series for small |z|
/// - Asymptotic expansion for large |z|
/// - Kummer transformation for improved convergence
#[allow(dead_code)]
pub fn hyp1f1_enhanced<F>(a: F, b: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign,
{
    let a_f64 = a
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert a to f64".to_string()))?;
    let b_f64 = b
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert b to f64".to_string()))?;
    let z_f64 = z
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert z to f64".to_string()))?;

    // Check for poles
    if b_f64 <= 0.0 && b_f64.fract() == 0.0 {
        return Err(SpecialError::DomainError(format!(
            "b must not be 0 or negative integer, got {b_f64}"
        )));
    }

    // Special case z = 0
    if z == F::zero() {
        return Ok(F::one());
    }

    // For large negative z, use Kummer transformation
    // ₁F₁(a;b;z) = e^z ₁F₁(b-a;b;-z)
    if z_f64 < -20.0 {
        let exp_z = z.exp();
        let transformed = hyp1f1_series(b - a, b, -z)?;
        return Ok(exp_z * transformed);
    }

    // For large positive z, use asymptotic expansion
    if z_f64 > 50.0 {
        return hyp1f1_asymptotic(a, b, z);
    }

    // For moderate z, use direct series
    hyp1f1_series(a, b, z)
}

/// Direct series for ₁F₁
#[allow(dead_code)]
fn hyp1f1_series<F>(a: F, b: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign,
{
    let mut sum = F::one();
    let mut term = F::one();

    for n in 1..MAX_SERIES_TERMS {
        let n_f = const_f64::<F>(n as f64);
        let n_minus_1 = const_f64::<F>((n - 1) as f64);

        term = term * (a + n_minus_1) * z / ((b + n_minus_1) * n_f);
        sum += term;

        if term.abs() < const_f64::<F>(CONVERGENCE_TOL) * sum.abs() {
            return Ok(sum);
        }
    }

    Ok(sum)
}

/// Asymptotic expansion for large z
#[allow(dead_code)]
fn hyp1f1_asymptotic<F>(a: F, b: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign,
{
    // For large positive z:
    // ₁F₁(a;b;z) ∼ Γ(b)/Γ(a) * e^z * z^(a-b) * (1 + O(1/z))

    let gamma_b = gamma(b);
    let gamma_a = gamma(a);

    let exp_z = z.exp();
    let z_power = z.powf(a - b);

    // Leading term
    let leading = gamma_b / gamma_a * exp_z * z_power;

    // First correction term
    let correction = (b - a) * (F::one() - a) / z;

    Ok(leading * (F::one() + correction))
}

/// Enhanced confluent hypergeometric limit function ₀F₁(;a;z)
#[allow(dead_code)]
pub fn hyp0f1_enhanced<F>(a: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign,
{
    let a_f64 = a
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert a to f64".to_string()))?;

    // Check for poles
    if a_f64 <= 0.0 && a_f64.fract() == 0.0 {
        return Err(SpecialError::DomainError(format!(
            "a must not be 0 or negative integer, got {a_f64}"
        )));
    }

    // z = 0
    if z == F::zero() {
        return Ok(F::one());
    }

    // Direct series: ₀F₁(;a;z) = Σ z^n / ((a)_n * n!)
    let mut sum = F::one();
    let mut term = F::one();

    for n in 1..MAX_SERIES_TERMS {
        let n_f = const_f64::<F>(n as f64);
        let n_minus_1 = const_f64::<F>((n - 1) as f64);

        term = term * z / ((a + n_minus_1) * n_f);
        sum += term;

        if term.abs() < const_f64::<F>(CONVERGENCE_TOL) * sum.abs() {
            return Ok(sum);
        }
    }

    Ok(sum)
}

/// Regularized hypergeometric function ₂F₁(a,b;c;z) / Γ(c)
///
/// This is useful when c is near a non-positive integer, where
/// the standard ₂F₁ has a pole but the regularized version is finite.
#[allow(dead_code)]
pub fn hyp2f1_regularized<F>(a: F, b: F, c: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign + SubAssign,
{
    let c_f64 = c
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert c to f64".to_string()))?;

    // For c near a non-positive integer, compute directly
    if c_f64 <= 0.0 && c_f64.fract().abs() < 1e-10 {
        // The regularized function is finite at these points
        // ₂F₁ᵣ(a,b;c;z) = Σ (a)_n (b)_n / (n!)² * z^n / (c+n-1)!
        // This requires careful computation
        return hyp2f1_regularized_at_pole(a, b, c, z);
    }

    // For regular c, just divide by Gamma(c)
    let gamma_c = gamma(c);
    let hyp = hyp2f1_enhanced(a, b, c, z)?;

    Ok(hyp / gamma_c)
}

/// Regularized hypergeometric when c is a non-positive integer
#[allow(dead_code)]
fn hyp2f1_regularized_at_pole<F>(a: F, b: F, c: F, z: F) -> SpecialResult<F>
where
    F: Float + FromPrimitive + Debug + AddAssign + MulAssign,
{
    let c_f64 = c
        .to_f64()
        .ok_or_else(|| SpecialError::ValueError("Failed to convert c to f64".to_string()))?;

    let m = (-c_f64).round() as usize; // c ≈ -m for some non-negative integer m

    // The regularized form involves the analytic continuation
    // around the pole using L'Hôpital's rule
    let mut sum = F::zero();

    // For the regularized form, we compute a finite series
    for n in 0..MAX_SERIES_TERMS {
        let n_f = const_f64::<F>(n as f64);

        if n < m + 1 {
            // Skip the first m+1 terms where the denominator would be zero
            continue;
        }

        let a_n = pochhammer_n(a, n);
        let b_n = pochhammer_n(b, n);
        let n_factorial = factorial_n(n);

        // (c)_n for c = -m is: (-m)(-m+1)...(-m+n-1) = (-1)^n * m!/(m-n)! for n <= m
        // For n > m, use the continuation
        let c_n = pochhammer_n(c, n);

        if c_n.abs() < const_f64::<F>(1e-100) {
            continue;
        }

        let term = a_n * b_n * z.powi(n as i32) / (c_n * n_factorial);
        sum += term;

        if n > 10 && term.abs() < const_f64::<F>(CONVERGENCE_TOL) * sum.abs() {
            break;
        }
    }

    Ok(sum)
}

/// Helper: Pochhammer symbol (a)_n
#[allow(dead_code)]
fn pochhammer_n<F>(a: F, n: usize) -> F
where
    F: Float + FromPrimitive,
{
    if n == 0 {
        return F::one();
    }

    let mut result = a;
    for i in 1..n {
        result = result * (a + const_f64::<F>(i as f64));
    }
    result
}

/// Helper: factorial n!
#[allow(dead_code)]
fn factorial_n<F>(n: usize) -> F
where
    F: Float + FromPrimitive,
{
    if n <= 1 {
        return F::one();
    }

    let mut result = F::one();
    for i in 2..=n {
        result = result * const_f64::<F>(i as f64);
    }
    result
}

#[cfg(test)]
mod tests {
    use super::*;
    use approx::assert_relative_eq;

    #[test]
    fn test_hyp2f1_enhanced_zero() {
        let result: f64 = hyp2f1_enhanced(1.0, 2.0, 3.0, 0.0).expect("test should succeed");
        assert_relative_eq!(result, 1.0, epsilon = 1e-14);
    }

    #[test]
    fn test_hyp2f1_enhanced_small_z() {
        // Known value from SciPy: hyp2f1(1.0, 2.0, 3.0, 0.5) = 1.545177444479562
        let result: f64 = hyp2f1_enhanced(1.0, 2.0, 3.0, 0.5).expect("test should succeed");
        assert_relative_eq!(result, 1.545177444479562, epsilon = 1e-10);
    }

    #[test]
    fn test_hyp2f1_enhanced_at_one() {
        // At z=1, use Gauss's theorem: ₂F₁(a,b;c;1) = Γ(c)Γ(c-a-b)/(Γ(c-a)Γ(c-b))
        // For a=0.5, b=1, c=3: should be about 1.5
        let result: f64 = hyp2f1_enhanced(0.5, 1.0, 3.0, 1.0).expect("test should succeed");
        assert!(result.is_finite());
    }

    #[test]
    fn test_hyp2f1_enhanced_terminating() {
        // For a = -2, the series terminates
        let result: f64 = hyp2f1_enhanced(-2.0, 3.0, 4.0, 0.5).expect("test should succeed");
        // Should match: 1 + (-2)(3)/(4*1)*0.5 + (-2)(-1)(3)(4)/(4*5*1*2)*0.25
        // = 1 - 0.75 + 0.15 = 0.4
        assert_relative_eq!(result, 0.4, epsilon = 1e-10);
    }

    #[test]
    fn test_hyp1f1_enhanced_zero() {
        let result: f64 = hyp1f1_enhanced(1.0, 2.0, 0.0).expect("test should succeed");
        assert_relative_eq!(result, 1.0, epsilon = 1e-14);
    }

    #[test]
    fn test_hyp1f1_enhanced_small_z() {
        let result: f64 = hyp1f1_enhanced(1.0, 2.0, 0.5).expect("test should succeed");
        // Known value approximately 1.297...
        assert!(result > 1.0 && result < 2.0);
    }

    #[test]
    fn test_hyp0f1_enhanced() {
        let result: f64 = hyp0f1_enhanced(1.0, 0.0).expect("test should succeed");
        assert_relative_eq!(result, 1.0, epsilon = 1e-14);

        let result2: f64 = hyp0f1_enhanced(1.0, 1.0).expect("test should succeed");
        // ₀F₁(;1;1) is related to Bessel functions
        assert!(result2 > 1.0);
    }

    #[test]
    fn test_levin_transform() {
        // Test that Levin transform works for a known sequence
        let partial_sums: Vec<f64> = vec![1.0, 1.5, 1.833, 2.083, 2.283, 2.45, 2.593];
        let result = levin_u_transform(&partial_sums).expect("test should succeed");
        assert!(result.is_finite());
    }
}