Update kmath-functions/src/commonMain/kotlin/space/kscience/kmath/integration/GaussIntegrator.kt

Co-authored-by: Gleb Minaev <43728100+lounres@users.noreply.github.com>
This commit is contained in:
SPC-code 2024-04-15 17:41:52 +03:00 committed by GitHub
parent 2fe04040c6
commit c696a22f62
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ import space.kscience.kmath.structures.indices
* [GaussLegendreRuleFactory].
* * [IntegrationRange]&mdash;the univariate range of integration. By default, uses `0..1` interval.
* * [IntegrandMaxCalls]&mdash;the maximum number of function calls during integration. For non-iterative rules, always
* use the maximum number of points. By default, uses 10 points.
* use the maximum number of points. By default, uses 10 points.
* * [UnivariateIntegrandRanges]&mdash;set of ranges and number of points per range. Defaults to given
* [IntegrationRange] and [IntegrandMaxCalls].
*/