REVIEW 4 major objections 6 minor 46 references
A novel number-theoretic sampling method for neural network solutions of partial differential equations
T0 review · 4 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read This paper proves that good lattice point sets shrink the expected L2 error bound of physics-informed neural network solutions.
desk verdict A useful empirical study of GLP sampling for PINNs, but the claimed theoretical advantage does not hold at the tested N and d values, and the proofs have gaps that need fixing. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the good lattice point set (GLP set): deterministic points x_{ij} = (2 q_{ij} - 1)/(2N), where q_{ij} ≡ i h_j (mod N) and (h_1, ..., h_d) is a generating vector chosen so the set has minimal star discrepancy. These points replace i.i.d. uniform samples in the residual-loss quadrature, so the Koksma-Hlawka-type bound of Lemma 1 applies and the discrete loss converges to the integral loss at rate O((log N)^d/N). The proof then chains three standard mechanisms: the PL* condition for over-parameterized networks (Lemma 2) gives convergence of the empirical loss along gradient descent; the variance-growth assumption links the sampling error s(N_r,N_b) to the optimization limit; and the stability Assumption 4 converts residual and boundary losses into the L2 error of the solution.
What would settle it
Train the peaked two-dimensional Poisson example while recording the Hardy-Krause variation of the residual at regular epochs. If the variation diverges during training yet GLP still outperforms uniform random, Lemmas 1(ii) and 3 are not the reason; if a non-smooth activation such as ReLU removes the GLP advantage at the same sample counts, that would indicate the smoothness assumption, not the discrepancy, carries the result.
Extended reading notes
Core claim
On its own terms, the paper's central claim is that the estimation error of a PINN is controlled by the discrepancy of the residual training points, and that low-discrepancy lattice points dominate random points in the bound. For a linear PDE satisfying the stability estimate C1||u||2 <= ||Lu||2 + ||Bu||2 <= C2||u||2, Theorem 3 gives ||u* - u($\theta$)||2 <= $\sqrt$(2/C1)( empirical residual loss + empirical boundary loss + O((log N_r)^d/N_r) + O($N_b^{{-1/2}}$) )^{1/2} for GLP interior points, versus a bound with O($N_r^{{-1/2}}$) for uniform random interior points. Combining this with Theorem 1, which says the expected empirical loss converges to (eta L C_V/(2 c mu)) s(N_r,N_b), Corollary 1 states that the limit of the expected squared L2 error is smaller for GLP sampling because (log N_r)^d/N_r is eventually smaller than $N_r^{{-1/2}}$. The paper presents numerical gains as confirmation that the error-bound gap is visible in practice.
Load-bearing premise
The load-bearing premise is that the PDE residual r(x;theta) has bounded Hardy-Krause variation with a constant that remains under control throughout the whole training trajectory; the paper cites the smoothness of tanh and sigmoid activations as justification, but never proves the variation constant stays bounded as network weights grow.
Editorial extensions
If this is right
- At a fixed sample budget N_r, the gap between the GLP and uniform-random error bounds grows as N_r increases, so lattice sampling pays off most in low-regularity and high-dimensional problems where many residual points are needed.
- Because the boundary loss still uses uniform random points, the total error rate is capped by O(N_b^{-1/2}); swapping the interior points alone gives the full benefit only when boundary sampling is also improved or boundary conditions are enforced exactly.
- GLP sampling needs no initial solution, no residual estimator and no adaptive hyperparameters, so it can be inserted into an existing PINN code by replacing only the interior point generator.
- In high dimension d the factor (log N_r)^d can weaken the advantage unless N_r is large enough; the paper's 5- and 8-dimensional experiments show a clear advantage at the tested budgets, and Remark 3 concedes the limit of small N_r.
Reading between the lines
- The low-discrepancy substitution is generic: any deep PDE solver whose loss is an integral over the domain (Deep Ritz, weak-form, variational, or adversarial) should inherit a similar estimation-error reduction, since the mechanism is simply quasi-Monte Carlo quadrature.
- A natural hybrid for sharp-peaked problems is to use a GLP base grid for the bulk and add a small number of residual-indicated or failure-region points; the deterministic grid keeps variance low while the extra points address the low-regularity regions the base grid misses.
- For inverse problems, the observed noise robustness suggests the discrepancy advantage survives noisy observations; a testable extension would be an error bound for parameter identification that includes the data-fitting regression error explicitly.
- In very high dimensions, the primitive-root construction used here may be replaced by component-by-component generated lattice rules to control (log N)^d/N, which is a straightforward next step the paper does not pursue.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes to replace uniform random sampling in the PINN empirical loss by good lattice point (GLP) sets generated by number-theoretic methods. It gives an algorithm for constructing the GLP residual points, formulates a PINN loss with GLP residual sampling and uniform random boundary sampling, and proves Theorems 1-3 plus Corollary 1 which are intended to show that the expected squared L2 error of the PINN solution has a smaller upper bound under GLP sampling than under uniform random sampling. Numerical experiments cover a two-dimensional Poisson equation with sharp peaks, a two-dimensional inverse Helmholtz problem with noisy data, and five- and eight-dimensional linear and nonlinear PDEs, comparing GLP sampling with uniform random, LHS, Halton, Hammersley, and Sobol sampling.
Significance. If the theoretical comparison were rigorous, the contribution would be useful: low-discrepancy deterministic sampling is a natural way to reduce the estimation error in PINNs, and the paper includes a concrete algorithm, comparisons against several standard sampling methods, and robustness studies under different sampling budgets and noise levels. The deterministic nature of GLP sets and the explicit construction in Definition 2 and Algorithm 1 are strengths. However, the central theoretical claim is not yet established as stated: the probabilistic-to-deterministic use of Lemma 1(i), the unquantified Hardy-Krause variation constant in the QMC rate, and the mismatch between the asymptotic comparison and the point counts used in the high-dimensional experiments are load-bearing gaps. The paper also ships no code, and one numerical table contains an internally inconsistent entry, so the experimental support needs verification.
major comments (4)
- [Section 3.1, Lemma 1(i); Section 3.2, Theorem 3(ii), Eq. (25)] Lemma 1(i) is explicitly identified in Remark 1(1) as a probabilistic error bound, but the proof of Theorem 3 uses it as a deterministic inequality ∫|r|² ≤ (1/N)Σ|r|² + O(N^{-1/2}) for the particular trained network. This is not valid pathwise: for a given random sample the empirical average can lie above or below the integral by more than the stated O term, and the constant depends on the sample through variance-type quantities. Consequently the upper bound in Eq. (25) and the corresponding part of Corollary 1 are not established as stated; the argument needs to be recast in expectation/probability with the random point set made explicit.
- [Section 3.1, Lemma 1(ii) and Remark 1; Section 3.2, Theorem 3] The QMC error bound in Lemma 1(ii) requires bounded variation in the sense of Hardy and Krause for the integrand r²(x;θ), and the implicit constant in O((log N)^d/N) is the Hardy-Krause variation of r². Remark 1 argues only that tanh/sigmoid activations are C^∞, which gives smoothness, not a controlled variation constant along the optimization path. Assumption 2 bounds the parameter iterates in a ball B(θ0,R) but does not quantify the variation of r² as a function of R; since the weights can grow during training, the variation constant may blow up. Thus the rate in Eq. (24) and the comparison in Eq. (26) are conditional on an unquantified constant. Please either prove a bound on V_HK(r²(·;θ)) for θ∈B(θ0,R), or state the result with the variation constant made explicit.
- [Corollary 1 and Section 4.4/4.5, Tables 5-8] The claimed advantage O((log N)^d/N) < O(N^{-1/2}) in Corollary 1 and Remark 3 is an asymptotic statement, and it fails at the point counts used in the high-dimensional experiments. For d=8 and N_r=11215, (log N)^8/N is on the order of 10^3 while N^{-1/2}≈10^{-2}; for d=5 and N_r=10007, (log N)^5/N is still larger than N^{-1/2}. Since Tables 5-8 are exactly the regime where the theorem's comparison is not active, those experiments do not confirm the theoretical prediction of Corollary 1; the observed GLP advantage must be attributed to suppressed constants or to behavior outside the bound. The paper should either report the actual discrepancy values and variation constants for the trained networks, or explicitly restrict the theoretical claim to the asymptotic regime and remove the unconditional wording in the abstract and the contribution list.
- [Appendix A, proof of Theorem 1] The chain of inequalities after Eq. (47), '0<cμη≤ cμ²/[L(M_V+...)] < cμ²/(L μ_G²) ≤1', does not follow from Assumption 3(i). The assumption μ ≤ √L/(c μ_G) implies cμ²/(L μ_G²) ≤ 1/(c μ_G^4) only, which is not ≤1 unless c μ_G^4 ≥1. Since the contraction factor 1-cμη must lie in (0,1) for the recursion to converge to the stated limit, an additional step-size condition (e.g., η ≤ 1/(cμ)) or a corrected inequality is needed.
minor comments (6)
- [Throughout] There are several typos: 'postive' in Assumption 1, 'mehtod' and 'Sobel sequence' in Section 4.2.1, and 'It is a well known' in Remark 3.
- [Assumption 3] The text uses 'N_d^{-1/2}' where the boundary sample count is N_b; make the notation consistent throughout.
- [Figures 25 and 26] The caption of Figure 25 reads 'The performance of errors...' but the figure shows sampling points; Figure 26 appears to contain the error plots. The captions should be corrected.
- [Table 6] In Table 6, strategy 3 reports e2(𝒖)=1.172×10^-3, which is identical to the e2 value in Table 5 for the five-dimensional problem, while e∞(𝒖)=5.272×10^-3; this looks like a copy/paste error and should be verified.
- [References] Reference [24] is missing publication details; the reference list should be completed.
- [Section 3.1] The notation distinguishes Ẽ^{GLP}_{r,N_r} from Ẽ^{UR}_{r,N_r} for the residual loss, but the boundary loss is always denoted Ẽ^{UR}_{b,N_b}; state explicitly that boundary points are always uniform random.
Circularity Check
No significant circularity: the GLP-vs-MC error comparison is imported from standard QMC bounds and explicit assumptions, not from fitted parameters or self-citations.
full rationale
The central theoretical chain (Theorem 1, Theorem 3, Corollary 1) uses Lemma 1, which is a standard Koksma-Hlawka/CLT bound attributed to Niederreiter, and Lemma 2 from Liu-Zhu-Belkin. No parameter is fitted to the numerical results; constants such as C1, C_V, L, mu, and c enter as symbolic assumptions (Assumptions 1-4) and are not tuned against Tables 2-8. The bound s(N_r,N_b) = O((log N_r)^d/N_r) + O(N_b^{-1/2}) for GLP is taken from Lemma 1(ii), so the claimed advantage over O(N_r^{-1/2}) is a direct consequence of a cited external QMC result, not of a quantity defined in terms of the paper's own outputs. The only self-citation is [45] in support of Assumption 4, but Assumption 4 is a stability assumption stated by the authors, not a theorem whose content is imported; the proof would stand unchanged if the citation were removed. Remark 3's concession that (log N_r)^d can weaken the advantage for very large d affects the strength of the claim, not its circularity. The numerical experiments are external validation and are not used to construct the proofs. Hence no circular step can be exhibited.
Assumptions & free parameters
assumptions (4)
- standard math Koksma-Hlawka inequality and discrepancy bounds for good lattice point sets (Lemma 1)
- standard math Local PL* condition for over-parameterized feedforward networks (Lemma 2, from Liu et al. [25])
- domain assumption Assumption 4 stability bound C1||u|| <= ||L[u]|| + ||B[u]|| <= C2||u|| for the linear PDE operators
- domain assumption Hardy-Krause bounded variation of the residual r(x;theta) with a constant that stays controlled during optimization (Remark 1)
Cite this review
Pith. "Pith review of A novel number-theoretic sampling method for neural network solutions of partial differential equations." pith.science (2026). https://pith.science/paper/CQYXIJRP
@misc{pith2026241117039,
author = {Pith},
title = {Pith review of: A novel number-theoretic sampling method for neural network solutions of partial differential equations},
year = {2026},
howpublished = {\url{https://pith.science/paper/CQYXIJRP}},
note = {Machine review of arXiv:2411.17039}
}
read the original abstract
Traditional Monte Carlo integration using uniform random sampling exhibits degraded efficiency in low-regularity or high-dimensional problems. We propose a novel deep learning framework based on deterministic number-theoretic sampling points, which is a robust approach specifically designed to handle partial differential equations with rough solutions or in high dimensions. The sample points are generated by the generating vector to achieve the smallest discrepancy. The architecture integrates Physics-Informed Neural Networks (PINNs) with rigorous mathematical guarantees demonstrating lower error bounds compared to conventional uniform random sampling. Numerical validation includes low-regularity Poisson equations, two-dimensional inverse Helmholtz problems, and high-dimensional linear/nonlinear PDEs, systematically demonstrating the algorithm's superior performance and generalization capabilities.
Figures
Figures from the paper (23 more)
Reference graph
Works this paper leans on
-
[3]
Numerical Mathematics: Theory, Methods & Applications 14
Chen,J.,Du,R.,Li,P.,Lyu,L.,2021.Quasi-montecarlosamplingforsolvingpartialdifferentialequationsbydeepneuralnetworks. Numerical Mathematics: Theory, Methods & Applications 14
work page 2021
-
[1]
Optimization methods for large-scale machine learning
Bottou, L., Curtis, F.E., Nocedal, J., 2018. Optimization methods for large-scale machine learning. SIAM review 60, 223–311
work page 2018
-
[2]
Monte carlo and quasi-monte carlo methods
Caflisch, R.E., 1998. Monte carlo and quasi-monte carlo methods. Acta numerica 7, 1–49
work page 1998
-
[4]
High-dimensional integration: the quasi-monte carlo way
Dick, J., Kuo, F.Y., Sloan, I.H., 2013. High-dimensional integration: the quasi-monte carlo way. Acta Numerica 22, 133–288
work page 2013
-
[5]
Dong, Z., Su, C., Chen, H., Lin, W., Li, Y., 2025. Agent-physics-informed neural network solving frequency-domain helmholtz equation related forward and inverse problems. Wave Motion , 103580
work page 2025
-
[6]
Theory and application of uniform experimental designs
Fang, K., Liu, M.Q., Qin, H., Zhou, Y.D., 2018. Theory and application of uniform experimental designs. volume 221. Springer
work page 2018
-
[7]
Number-theoretic methods in statistics
Fang, K.T., Wang, Y., 1993. Number-theoretic methods in statistics. volume 51. CRC Press
work page 1993
-
[8]
Fu, F., Wang, X., 2022. Convergence analysis of a quasi-monte carlo-based deep learning algorithm for solving partial differential equations. arXiv preprint arXiv:2210.16196
work page Pith review arXiv 2022
Show all 46 references
-
[9]
Failure-informed adaptive sampling for pinns, part ii: combining with re-sampling and subset simulation
Gao, Z., Tang, T., Yan, L., Zhou, T., 2024. Failure-informed adaptive sampling for pinns, part ii: combining with re-sampling and subset simulation. Communications on Applied Mathematics and Computation 6, 1720–1741
2024
-
[10]
Failure-informed adaptive sampling for pinns
Gao, Z., Yan, L., Zhou, T., 2023. Failure-informed adaptive sampling for pinns. SIAM Journal on Scientific Computing 45, A1971–A1994
2023
-
[11]
A physics-informed deep learning framework for inversion and surrogate modeling in solid mechanics
Haghighat, E., Raissi, M., Moure, A., Gomez, H., Juanes, R., 2021. A physics-informed deep learning framework for inversion and surrogate modeling in solid mechanics. Computer Methods in Applied Mechanics and Engineering 379, 113741
2021
-
[12]
On the efficiency of certain quasi-random sequences of points in evaluating multi-dimensional integrals
Halton, J.H., 1960. On the efficiency of certain quasi-random sequences of points in evaluating multi-dimensional integrals. Numerische Mathematik 2, 84–90
1960
-
[13]
Monte carlo methods
Hammersley, J., Handscomb, D., Weiss, G., 1965. Monte carlo methods. Physics Today 18, 55–56
1965
-
[14]
Solvinghigh-dimensionalpartialdifferentialequationsusingdeeplearning
Han,J.,Jentzen,A.,Weinan,E.,2018. Solvinghigh-dimensionalpartialdifferentialequationsusingdeeplearning. ProceedingsoftheNational Academy of Sciences 115, 8505–8510
2018
-
[15]
Funktionen von beschränkter variatiou in der theorie der gleichverteilung
Hlawka, E., 1961. Funktionen von beschränkter variatiou in der theorie der gleichverteilung. Annali di Matematica Pura ed Applicata 54, 325–333
1961
-
[16]
Zur angenäherten berechnung mehrfacher integrale
Hlawka, E., 1962. Zur angenäherten berechnung mehrfacher integrale. Monatshefte für Mathematik 66, 140–151
1962
-
[17]
Applications of number theory to numerical analysis
Hua, L.K., 2012. Applications of number theory to numerical analysis. Springer Science & Business Media
2012
-
[18]
Nsfnets (navier-stokes flow nets): Physics-informed neural networks for the incompressible navier-stokes equations
Jin, X., Cai, S., Li, H., Karniadakis, G.E., 2021. Nsfnets (navier-stokes flow nets): Physics-informed neural networks for the incompressible navier-stokes equations. Journal of Computational Physics 426, 109951
2021
-
[19]
Karimi, H., Nutini, J., Schmidt, M., 2016. Linear convergence of gradient and proximal-gradient methods under the polyak-łojasiewicz condition, in: Joint European conference on machine learning and knowledge discovery in databases, Springer. pp. 795–811
2016
-
[20]
Adam: A method for stochastic optimization
Kingma, D.P., Ba, J., 2014. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980
2014 arXiv
-
[21]
The approximate computation of multiple integrals, in: Dokl
Korobov, A., 1959a. The approximate computation of multiple integrals, in: Dokl. Akad. Nauk SSSR, pp. 1207–1210
-
[22]
The evaluation of multiple integrals by method of optimal coefficients
Korobov, N., 1959b. The evaluation of multiple integrals by method of optimal coefficients. Vestnik Moskovskogo universiteta 4, 19–25
-
[23]
Characterizing possible failure modes in physics-informed neural networks
Krishnapriyan, A., Gholami, A., Zhe, S., Kirby, R., Mahoney, M.W., 2021. Characterizing possible failure modes in physics-informed neural networks. Advances in neural information processing systems 34, 26548–26560
2021
-
[24]
Fourier neural operator for parametric partial differential equations, in: International Conference on Learning Representations
Li, Z., Kovachki, N.B., Azizzadenesheli, K., Bhattacharya, K., Stuart, A., Anandkumar, A., et al., . Fourier neural operator for parametric partial differential equations, in: International Conference on Learning Representations
-
[25]
Losslandscapesandoptimizationinover-parameterizednon-linearsystemsandneuralnetworks
Liu,C.,Zhu,L.,Belkin,M.,2022. Losslandscapesandoptimizationinover-parameterizednon-linearsystemsandneuralnetworks. Applied and Computational Harmonic Analysis 59, 85–116
2022
-
[26]
On the limited memory bfgs method for large scale optimization
Liu, D.C., Nocedal, J., 1989. On the limited memory bfgs method for large scale optimization. Mathematical programming 45, 503–528
1989
-
[27]
Learningnonlinearoperatorsviadeeponetbasedontheuniversalapproximation theorem of operators
Lu,L.,Jin,P.,Pang,G.,Zhang,Z.,Karniadakis,G.E.,2021a. Learningnonlinearoperatorsviadeeponetbasedontheuniversalapproximation theorem of operators. Nature machine intelligence 3, 218–229
-
[28]
Deepxde: A deep learning library for solving differential equations
Lu, L., Meng, X., Mao, Z., Karniadakis, G.E., 2021b. Deepxde: A deep learning library for solving differential equations. SIAM review 63, 208–228
-
[29]
Enforcing exact boundary and initial conditions in the deep mixed residual method
Lyu, L., Wu, K., Du, R., Chen, J., 2020. Enforcing exact boundary and initial conditions in the deep mixed residual method. arXiv preprint arXiv:2008.01491
2020 arXiv
-
[30]
Mim:Adeepmixedresidualmethodforsolvinghigh-orderpartialdifferentialequations
Lyu,L.,Zhang,Z.,Chen,M.,Chen,J.,2022. Mim:Adeepmixedresidualmethodforsolvinghigh-orderpartialdifferentialequations. Journal of Computational Physics 452, 110930
2022
-
[31]
Good lattice training: Physics-informed neural networks accelerated by number theory
Matsubara, T., Yaguchi, T., 2023. Good lattice training: Physics-informed neural networks accelerated by number theory. arXiv preprint arXiv:2307.13869
2023 arXiv
-
[32]
Pseudo-random numbers and optimal coefficients
Niederreiter, H., 1977. Pseudo-random numbers and optimal coefficients. Advances in Mathematics 26, 99–181
1977
-
[33]
Random number generation and quasi-Monte Carlo methods
Niederreiter, H., 1992. Random number generation and quasi-Monte Carlo methods. SIAM
1992
-
[34]
Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations
Raissi, M., Perdikaris, P., Karniadakis, G.E., 2019. Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations. Journal of Computational physics 378, 686–707
2019
-
[35]
An introduction to partial differential equations
Renardy, M., Rogers, R.C., 2006. An introduction to partial differential equations. volume 13. Springer Science & Business Media
2006
-
[36]
On the convergence of physics informed neural networks for linear second-order elliptic and parabolic type pdes
Shin, Y., Darbon, J., Karniadakis, G.E., 2020. On the convergence of physics informed neural networks for linear second-order elliptic and parabolic type pdes. COMMUNICATIONS IN COMPUTATIONAL PHYSICS 28, 2042–2074
2020
-
[37]
Dgm: A deep learning algorithm for solving partial differential equations
Sirignano, J., Spiliopoulos, K., 2018. Dgm: A deep learning algorithm for solving partial differential equations. Journal of computational physics 375, 1339–1364
2018
-
[38]
Lattice methods for multiple integration
Sloan, I.H., Joe, S., 1994. Lattice methods for multiple integration. Oxford University Press
1994
-
[39]
On the distribution of points in a cube and the approximate evaluation of integrals
Sobol, I., 1967. On the distribution of points in a cube and the approximate evaluation of integrals. USSR Computational Mathematics and Mathematical Physics 7, 86–112
1967
-
[40]
Large sample properties of simulations using latin hypercube sampling
Stein, M., 1987. Large sample properties of simulations using latin hypercube sampling. Technometrics , 143–151. Yu Yang et al.:Preprint submitted to Elsevier Page 27 of 28 A number-theoretic sampling method in NN
1987
-
[41]
Deep density estimation via invertible block-triangular mapping
Tang, K., Wan, X., Liao, Q., 2020. Deep density estimation via invertible block-triangular mapping. Theoretical and Applied Mechanics Letters 10, 143–148
2020
-
[42]
Das-pinns: A deep adaptive sampling method for solving high-dimensional partial differential equations
Tang, K., Wan, X., Yang, C., 2023. Das-pinns: A deep adaptive sampling method for solving high-dimensional partial differential equations. Journal of Computational Physics 476, 111868
2023
-
[43]
Weinan,E.,Yu,B.,2018.Thedeepritzmethod:Adeeplearning-basednumericalalgorithmforsolvingvariationalproblems.Communications in Mathematics and Statistics 6, 1–12
2018
-
[44]
Acomprehensivestudyofnon-adaptiveandresidual-basedadaptivesamplingforphysics- informed neural networks
Wu,C.,Zhu,M.,Tan,Q.,Kartha,Y.,Lu,L.,2023. Acomprehensivestudyofnon-adaptiveandresidual-basedadaptivesamplingforphysics- informed neural networks. Computer Methods in Applied Mechanics and Engineering 403, 115671
2023
-
[45]
Moving sampling physics-informed neural networks induced by moving mesh pde
Yang, Y., Yang, Q., Deng, Y., He, Q., 2024. Moving sampling physics-informed neural networks induced by moving mesh pde. Neural Networks , 106706
2024
-
[46]
Weak adversarial networks for high-dimensional partial differential equations
Zang, Y., Bao, G., Ye, X., Zhou, H., 2020. Weak adversarial networks for high-dimensional partial differential equations. Journal of Computational Physics 411, 109409. Yu Yang et al.:Preprint submitted to Elsevier Page 28 of 28
2020
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.