Closed Noreaster76 closed 1 year ago
I think I might have copied in the code so that I could do some custom modifications, to do some bayesian probability distributions, for the "advanced stats". I'll have to check.
On Tue, Nov 14, 2023, 9:09 PM Gabe Heafitz @.***> wrote:
Replace the copied-in code for the org.apache.commons.commons-math3 library with that of a Maven dependency (of the same library).
Benefits:
- Less code in the codebase that needs to be maintained.
- Less code for a newcomer to get acquainted with.
- Much easier to incorporate any updates to the org.apache.commons.commons-math3 library -- it's a simple matter of updating the version in the Maven POM (assuming no breaking changes, of course).
Obviously, the org.apache.commons.commons-math3 code is always available on Apache's repo to look at, if desired.
You can view, comment on, or merge this pull request online at:
https://github.com/happyjack27/autoredistrict/pull/222 Commit Summary
- 7fc5bad https://github.com/happyjack27/autoredistrict/pull/222/commits/7fc5baddae8bd33c9060afebc4886bf4fca533d9 Replace Apache Commons Math3 with Maven dependency
File Changes
(300 files https://github.com/happyjack27/autoredistrict/pull/222/files)
- M pom.xml https://github.com/happyjack27/autoredistrict/pull/222/files#diff-9c5fb3d1b7e3b0f54bc5c4182965c4fe1f9023d449017cece3005d3f90e8e4d8 (5)
- R src/main/java/new_metrics/CustomBetaDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-dbafb546c7188c64cb7b529c051f5d3b2b795f890c1090b6d9a3eeb60bd79897 (274)
- R src/main/java/new_metrics/CustomGammaDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-d0cebe452f4a1594de11fa8f8e8e175e69af3e406094ce347b6498bf5a88ada2 (208)
- M src/main/java/new_metrics/FrameDraw.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1e0c2677ccc6cf80bcf2b405afebd9afdce5fbe0405ccc78f8ac287a9f34a80c (6)
- M src/main/java/new_metrics/FrameDrawSeatsVotes.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-59506ab2cd3ed7e3e4f62fb9cce8cb37020aa0e31540a4686246f8eabe884d64 (6)
- M src/main/java/new_metrics/Metrics.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-3d73fb1555c0d5a3e147c8d5d4a5767eec5e38091055eb8c3ee81853d19c3b31 (52)
- D src/main/java/org/apache/commons/math3/Field.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-9a83cd8d43045e5d4e5c1032fd0b6459c43db42ebfe478fa44379a89bc08a54e (58)
- D src/main/java/org/apache/commons/math3/FieldElement.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-341747d42522358f744315f839b14240b3b103a5f39416e07407cf9dbb819c0c (87)
- D src/main/java/org/apache/commons/math3/RealFieldElement.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-aca7e69725bdfc52ec1c4a70c71febd2d5d0ca45f4b86e337cd93ec42f72f630 (402)
- D src/main/java/org/apache/commons/math3/analysis/BivariateFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-65082ad274e5558ea66314a976591a14aa105b60b7de89f2be84e02fbdc6a6a7 (35)
- D src/main/java/org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-13b5d00b69e78fc143a3d5d6c676140a9635c947e97bf3486813aa3a6ed934c5 (52)
- D src/main/java/org/apache/commons/math3/analysis/DifferentiableMultivariateVectorFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-297dcdc2b7d62fbb1b26453893853f98d79ca6da4fc87c3883ef6ef759563348 (36)
- D src/main/java/org/apache/commons/math3/analysis/DifferentiableUnivariateFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-cf0e192be8a2d9985fc16cd3006bcb5750350a8f7192a570616260023822ae8c (35)
- D src/main/java/org/apache/commons/math3/analysis/DifferentiableUnivariateMatrixFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-cc5d90538407570122cd3e8a8f835574292a943b9492ea226f5f3ff0c2778432 (36)
- D src/main/java/org/apache/commons/math3/analysis/DifferentiableUnivariateVectorFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-e252a47b9c055503028673b589ecf02d83da73d0ac899b3070da9b992b8613c8 (36)
- D src/main/java/org/apache/commons/math3/analysis/FunctionUtils.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-efef4a14f289d12255897846739897c32b5d028a1766afaecdbf3e9f503b82da (806)
- D src/main/java/org/apache/commons/math3/analysis/MultivariateFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-9332c328ec0f15f0d48e28c888fd3d682d6da9801c6a5028eb2c10aec0130682 (42)
- D src/main/java/org/apache/commons/math3/analysis/MultivariateMatrixFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-7c3cce67065fff1d26966e21b8a6f6537d636603c1b698b976183c47988376e9 (35)
- D src/main/java/org/apache/commons/math3/analysis/MultivariateVectorFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-7d5c66fb9fc112cbbab90ec445b14188b80b4fffe25ee88f6e02f4f2a661d975 (35)
- D src/main/java/org/apache/commons/math3/analysis/ParametricUnivariateFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-91e3fe3a10ae98eba698c51cf6043594b97139317316a91afcb5299800139e5d (44)
- D src/main/java/org/apache/commons/math3/analysis/RealFieldUnivariateFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-51fccb4efc2c3705b55ea75d1adda6c79319e01ff1533ad7d3da9add7e87dcc5 (86)
- D src/main/java/org/apache/commons/math3/analysis/TrivariateFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-a5f7976cf0416ee628de1318b5c497be19bf83e59830844487f9af07d325d339 (35)
- D src/main/java/org/apache/commons/math3/analysis/UnivariateFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8faa1dfa00e928b18aa00d45bfacc74992fb13abfc75be52b7a1eccd08aa87f1 (81)
- D src/main/java/org/apache/commons/math3/analysis/UnivariateMatrixFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-807ba53d4c4e978a1be33e5c0a817861de4ccf0a0991dea2179c743247ba63e5 (33)
- D src/main/java/org/apache/commons/math3/analysis/UnivariateVectorFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-da410cc8795e3283b013ad76b776ccdccf15b1660b2c45201cebad45e87e7d21 (33)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/DSCompiler.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c97854aa6f2883a6a83b4c6c77d717111170e16ddc87747d38b3254c9a59d320 (1820)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/DerivativeStructure.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-b7c7093d77083c8a4518e8139a84f1203d7af301c9b96f8b61ec425620de6339 (1195)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/FiniteDifferencesDifferentiator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-877b93ff1a2218164d82dfcf7ac9a753999eae87f0e35d93c3da44f4e33ac30d (384)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/GradientFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ecea05fe50e5f1949af931a9afa6276795a7daa561e5e79e93b57c55c84eb7ef (65)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/JacobianFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-23f5dbbe5040d6b7bcc39bd3d61933022e6d9e3664c082729ae77baada886c82 (69)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/MultivariateDifferentiableFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-dbc272318664031d63503103886f5ac516277c65a613053ec61155ad9782e398 (42)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/MultivariateDifferentiableVectorFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-65f19149d5dbba0b3bb36d46b12ceb1482932d444d6581bdde99a0b84c5bcb09 (43)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/SparseGradient.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-0f63466ecbdbf538a589228b2de444cc776730355e076b55b275b4ccc4097f50 (877)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/UnivariateDifferentiableFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c35fe33894a29b65c4c9a46672d9d9697449216fd8764ae7951caa5f80b829ed (43)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/UnivariateDifferentiableMatrixFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1ccbf8e1fd98beed3aef7b106e791f8316281de4aa0ecce0fa8855e86ce6cef8 (40)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/UnivariateDifferentiableVectorFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1ac8e3c27c2a6a2db268f0a5ae2c2c4229162637b6d751d94926a2b0a42008e8 (40)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/UnivariateFunctionDifferentiator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1309dc244e032e7de61b105ce89f2a2ebce390cb77bfbc53fcc6e0f8f0747731 (33)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/UnivariateMatrixFunctionDifferentiator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c0448f54037fc6c29deedf077fbad5ec535fd2c45494c27b48b51fadd5e6fef2 (33)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/UnivariateVectorFunctionDifferentiator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2c9a65a426da491525f1277f92c2e7d33e83f6416f08de3a3803dac38e3fd99c (33)
- D src/main/java/org/apache/commons/math3/analysis/differentiation/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8d555998d354ac2df39eddea1a2d90ce4455012223f31a593c94e6c4b227c19e (42)
- D src/main/java/org/apache/commons/math3/analysis/function/Abs.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-48998f022a00984286c81f8ccdd843487a85cc5c425e1c0bd4629a41c8105fbf (33)
- D src/main/java/org/apache/commons/math3/analysis/function/Acos.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c6076d27d28271ac0c06c0493dfb122614c5cf578ab828d2d91ba99d306f089a (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Acosh.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-bd097ab8a0b40af230977500580f44e4b1fce4a32e219e738df2d453cc91fb4f (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Add.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-cf8f80ecd275f7ea0955ecf3f6d8915fdc5c4f8cfdc01399564d65803bd36bbd (32)
- D src/main/java/org/apache/commons/math3/analysis/function/Asin.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ee9497dff297b86dbb7cca636d38ce5fb9c2940cdecaad91c8a802f72ee0a976 (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Asinh.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-04885e2f11ad5d16ac73585e2c02657e4753cf076eaf9e0ae85518dd1ebe1add (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Atan.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-74dbdd0cd6ba0389f851da6122dc77e5c75c91a5627f4210278eb7e63f211a4d (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Atan2.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5015d331e30901688e9e6b45c0c885c5c4452e367bae52d78fccee54ba6c8f98 (33)
- D src/main/java/org/apache/commons/math3/analysis/function/Atanh.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c82722ecc3a7189985a51368365a1df20b8432655a20c26ae83e59fc6aad71e5 (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Cbrt.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-14d06860d60ce3e9d1657d5b260a3725b8d873440c6717959fe4cbc0d14f245e (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Ceil.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-06cabbaca12cffbb715cd2f1aaff9b1de227d5eba9afecbd8d97110214a9bff2 (33)
- D src/main/java/org/apache/commons/math3/analysis/function/Constant.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2b95afe03e0df6588c4905c6e841fdc698c67c949056fa5080b7f82e6afdf55e (60)
- D src/main/java/org/apache/commons/math3/analysis/function/Cos.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-3b2359286be2e26b42ed571b8937737ebabbab9e8ee693eaed2a74cc7fa74d50 (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Cosh.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-98a7f41a90012c6185d1e30a5ce0ba907448379de1c3ea42b87112f715e5ddad (51)
- D src/main/java/org/apache/commons/math3/analysis/function/Divide.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-a7c2fe8d3bf465197d622096594e0091485295ac4a53d6db6e5799a193353d67 (32)
- D src/main/java/org/apache/commons/math3/analysis/function/Exp.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-646ef1e4a55f4fc23d05c402b5e8eac765862d7c874b643342d9135f02d54418 (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Expm1.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-cba0caaa4f7db773b78f7a979289ee31cd74d3797ed70a472155f0fe0563d8be (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Floor.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ed058a1fca8863a7a66bf4fe545c74716856177477ba48563beb26d902f3ae04 (33)
- D src/main/java/org/apache/commons/math3/analysis/function/Gaussian.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5e036c35fa092d5a7ed671e5d3429d444c2f5780ab86c80d8a622573db81da2d (259)
- D src/main/java/org/apache/commons/math3/analysis/function/HarmonicOscillator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-34933e4476cc0af4429ca1b61275912a5a14f432664e883eecebac3c741a03cf (183)
- D src/main/java/org/apache/commons/math3/analysis/function/Identity.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5b4706da960d3b272f195859bfb6349bf7b3169b963c2d17d022d2a1ab598b9a (50)
- D src/main/java/org/apache/commons/math3/analysis/function/Inverse.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2b2535ec2266915a8ffccb37a2cdf2d8aadc86b629ec32dddbf63c069256b2c6 (52)
- D src/main/java/org/apache/commons/math3/analysis/function/Log.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-92cca137075c73ad3b1400a1b6a75b3f929fc26dbd6eeccc99d210e42bbc64df (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Log10.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ed4af10e4cb29b4207526691a7541e43416b5a2e889dd3a8158056ee2ca5a7f7 (54)
- D src/main/java/org/apache/commons/math3/analysis/function/Log1p.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-4e9e8512fbfb752cce8c45f052001aa88ee0077570f4036bb4c982dbf277de80 (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Logistic.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c1bf1cd5f4f4079e09b3299c77674105e21b77f8912eb8d3ca2eb5d30570a4ff (228)
- D src/main/java/org/apache/commons/math3/analysis/function/Logit.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-db3e671212cc14a13288a828e053f6a1b16a2adefdaa7b1b0ea203d2b30e1637 (212)
- D src/main/java/org/apache/commons/math3/analysis/function/Max.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-96a7568f5c641626e6c8447dc5cda217f875b24c6dbbec20d6a5bc023b066ce1 (33)
- D src/main/java/org/apache/commons/math3/analysis/function/Min.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-fd6358863665378be9c32ff059b21842dc57d5f3746791c3ae6b37022f349119 (33)
- D src/main/java/org/apache/commons/math3/analysis/function/Minus.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-263bad80128da025d61a5dfdc1a695679f16f37dee4f4e9e513895744bdcf733 (50)
- D src/main/java/org/apache/commons/math3/analysis/function/Multiply.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-e5be5cb1df5243a78415805b9ffe37fa01a1b43531f60c4475284fa6bb8d7468 (32)
- D src/main/java/org/apache/commons/math3/analysis/function/Pow.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-7bccf72f1baff9461e8cb69e3bf1c15dd4865c9dbf388039c7f7bdba3e4f52db (33)
- D src/main/java/org/apache/commons/math3/analysis/function/Power.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-94dd4af87ee311bb2cee9950f2909e42cc5b73b9e110aa4b816b3b5c5f1e484d (63)
- D src/main/java/org/apache/commons/math3/analysis/function/Rint.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-7dd3fa1764c88c75948c2c6ced70e5c1a57f85931e22dcf41a936ee337b2b9d0 (33)
- D src/main/java/org/apache/commons/math3/analysis/function/Sigmoid.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ef9290c60003a5320684f31f13697d5dc2c5b1227f4771402334d6b7ba3c14c6 (218)
- D src/main/java/org/apache/commons/math3/analysis/function/Signum.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-fc7aeb31ed70bca962fb5e75082fa26c5fabb1996fc76beaa4d66e9f5ce11985 (33)
- D src/main/java/org/apache/commons/math3/analysis/function/Sin.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8b170d4ac133a44197e31b51d00437046929d239fccca609cf0b6efcdbf9c940 (51)
- D src/main/java/org/apache/commons/math3/analysis/function/Sinc.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-af345c8de6c21a07325b8d4d469fccb3550a43188a4d17be48e986e8f67afb02 (205)
- D src/main/java/org/apache/commons/math3/analysis/function/Sinh.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-68a73d6b7370b6612223a122c209e31a271b755baf6a46b671dbdab06b49d7fa (51)
- D src/main/java/org/apache/commons/math3/analysis/function/Sqrt.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-33123518deb34e03fd450b0be760d5467cfca12bb4e23ea3fb80ff10a334808e (53)
- D src/main/java/org/apache/commons/math3/analysis/function/StepFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-83024ce5b5e6d87798eb70d3926cab8294bd1c5109d8b11bb08dcf694710f7c6 (101)
- D src/main/java/org/apache/commons/math3/analysis/function/Subtract.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-118b6338240733d972c261caee7c17fbdbc0bb22e2f5e6c31570019c7a697343 (32)
- D src/main/java/org/apache/commons/math3/analysis/function/Tan.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-e8bac1f796096242a7bef26beedb88e027d6ba3b6d6678056fd4fa5c47a6c60e (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Tanh.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-a7160f78dba83e1c2695b6639cae8791cc5fdd3f85d7e12f8422b42e311112d1 (53)
- D src/main/java/org/apache/commons/math3/analysis/function/Ulp.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ddf2f1204fda1b2c8cab1c597cab0425f2b05ce0385ce2a17645a79ad02dda01 (33)
- D src/main/java/org/apache/commons/math3/analysis/function/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-eff34c05aae54b580a473aee6e195a37781d09252245bbe92747c9376f664be4 (26)
- D src/main/java/org/apache/commons/math3/analysis/integration/BaseAbstractUnivariateIntegrator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-68905119f90e9bfcce3a558ed7a48eeaf2cb67aba16560afbf6bd8a575875f59 (297)
- D src/main/java/org/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-943bcf80901bf2036ba35efbd960629dd88c45cc0dc6c81d7904eb79510ed434 (183)
- D src/main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-84b0e48b8e9371f6fb07478ae9ad03c773582eb498a1364ddb12a89558557a48 (265)
- D src/main/java/org/apache/commons/math3/analysis/integration/MidPointIntegrator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ec76dbe63e905529eb2afd6f17ad7ba0a7af4e5b7d147ce4597b1592875ae4c5 (169)
- D src/main/java/org/apache/commons/math3/analysis/integration/RombergIntegrator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-037d8e5848e5394de634b614b40c368ce50b5a8522877353aee2aa1e1a4867c3 (142)
- D src/main/java/org/apache/commons/math3/analysis/integration/SimpsonIntegrator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-50e37c290b93d8d02f3e13da23c4295538ad6df16bc60187f8e9720d1ddc7f20 (129)
- D src/main/java/org/apache/commons/math3/analysis/integration/TrapezoidIntegrator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-dbffdaa1b9f35b805316bb3bdfacd3fc65bb7e55a0160fcf69a4a9ae70fe9840 (168)
- D src/main/java/org/apache/commons/math3/analysis/integration/UnivariateIntegrator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8db220b24b0171f6cf475086b43e5f956c4fd52aad81363269d898fd8b9618bb (95)
- D src/main/java/org/apache/commons/math3/analysis/integration/gauss/BaseRuleFactory.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1ea113b3e0d0001c0f0edc4df9e53c423d37c2981e48b290030b3291cf4959e8 (153)
- D src/main/java/org/apache/commons/math3/analysis/integration/gauss/GaussIntegrator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-9f7e5d1482760091514d2e3978e3b956417a9156d88cd18ee7373b1f191c2647 (129)
- D src/main/java/org/apache/commons/math3/analysis/integration/gauss/GaussIntegratorFactory.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-279fcbc8facf510a1cbe7ef644fb55f6734173d0d5e339fcf6b18254823283fc (167)
- D src/main/java/org/apache/commons/math3/analysis/integration/gauss/HermiteRuleFactory.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-0a7214371a25c41b6613183da8e33af85cc0d930e37b1bb3b3904d3f31e8119f (177)
- D src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreHighPrecisionRuleFactory.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1fc608bc0c0ec55b33fd8299d6831e2ae999789e112e18f42d30e60a233a564d (215)
- D src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreRuleFactory.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8c5cb89ac39651d076574f37f7abbaf2c82a0a36c41ec008f493326de852b802 (140)
- D src/main/java/org/apache/commons/math3/analysis/integration/gauss/SymmetricGaussIntegrator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-3502783cc5cd45e8654b21c6f6f77a97c8622fd0d2e6f4e125a82a93ecb6608e (103)
- D src/main/java/org/apache/commons/math3/analysis/integration/gauss/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c3d6c98833ef72fbc00e52ebf548b01276daac662f65da0852c9e577fe9b6cbd (22)
- D src/main/java/org/apache/commons/math3/analysis/integration/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ebad93420f9139f0e145ffc794a602574552dad8bba72a12dad5ba20a131ad61 (22)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/AkimaSplineInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2a33af875f5f415b14fd6e1f9c0ee5626bcd563dc3509db47877b32efd18485a (215)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicInterpolatingFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-820b6626c9fe7ca509c3bdf329c1623813c5e478befad0c886331cdeaa00ead4 (325)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-0974127441a202a36a4fa1898b9b99e8cd1f06d25408e78f4c9918173368ad4b (113)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatingFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2f04f50d32f2dcb1d69ffbd25194fba269583e6de8abc4bb2408fd09da500248 (641)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-4a08ea3d43ed32a2499a5bcef88187dcfa30014b27cdd4a4bc6df0409cba06bd (176)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/BivariateGridInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-d5ad9687f258aa55917d0229132fff1e26ca87c29c12f01f5d6da1198e252c73 (51)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/DividedDifferenceInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-4eb47d878458eb1b4fe41810b237dd4baa5b234858ffb8be17be21dd2835de5a (120)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/FieldHermiteInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-b987f9e56caae478170bee34eaf521a2bb8b6f59efa712030ca948b20707e89f (209)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/HermiteInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-29f8883718a2f2f24f5a26d2c52f1e1f28ba7cb6adacdde41882f982a13b504f (239)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/InterpolatingMicrosphere.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-db9eee9e26c4b845d02333764fd3e35c1619116c9eebb1c88edb7cd457c33137 (385)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/InterpolatingMicrosphere2D.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-86f108bed48e6714da4e7696e229ff9cdcf435dd3a736c7b41edcfdadb349c06 (87)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/LinearInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-57468601d23d534e8e1bf251b15c96deba1787c38db2379e555487be66265231 (79)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/LoessInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-9854ce183c52f581b674557942e23983dabcb5ba935fbcf9e7d7707dfa7e7f94 (473)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereInterpolatingFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-62fa9e0e789839a8946c7d7b05d2b253c534b4e116aa3c91ce9578a2b11d4b5a (253)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-a20832e926818bef6c3f2e81c37067b10c51422f00c58e4bea530e180200f0d3 (105)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereProjectionInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-76a30388788d8a871c89b0658f86337f6d0d0ce6e14ac14aa0ffdf43343f899b (164)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/MultivariateInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-6ce3f60ec52e12ecef7e2831cd1f473c090e916aed2305e600dd9216463968a6 (51)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/NevilleInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c12d286694ae86132478d7ff042c55c4b05b73d3db78937dfe89f0f082aca439 (60)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/PiecewiseBicubicSplineInterpolatingFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-a4ff7822122b74091c70d89098677e2992e1b681a6e35eae241d6487e8e7f4b8 (210)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/PiecewiseBicubicSplineInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-188dd200f06b841df12cc7bbb02e5e877d2be6214de154e24ee9fb237b2bfd65 (61)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/SmoothingPolynomialBicubicSplineInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-17c6f03e14f5d176708d04d02206ea9084dcd43c4340c84e03af6fc656e41f58 (171)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/SplineInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-25ae5515ff9dfba4010e36fd109dac4f9459683908a19fde77ac62a1ca7ec890 (127)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicInterpolatingFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-053f71b19ad7aaa56d6374fe5f1f3d98981833c4554d56ce39e905c8ea1ce527 (508)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-42a4f7dc8503404fc6ae8d2c7a38dc9c185b92bdf03a392cff568390f38e5f4c (143)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolatingFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-26f117707fbd57e9660e15939df5e298579f0c7967241ded106a9fa9275325e6 (482)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-09ffd4a95995d0efd3f3fe64af9b7335548d7f8d2cd709d384b9f4d6a0bffad5 (201)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/TrivariateGridInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-f3885c6ef5bc6d4f1c73c4266f7015aafba874bda9b7acec213944700aa0dbb1 (54)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/UnivariateInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-775bde72e5d2dde1558b65e1d658cd3171c05a7836b4c1f1e4334e319d41d021 (41)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/UnivariatePeriodicInterpolator.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-f3125729c214423340b152c90feb619ff4da9b12f6d716e2e8294c23682f1ccd (124)
- D src/main/java/org/apache/commons/math3/analysis/interpolation/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-26e933aca8b148d6d8349fc3c426fb0eca9c4bc1b874345796713f135a1162c6 (22)
- D src/main/java/org/apache/commons/math3/analysis/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5e8e35f4b132193baf187368415bd598827f00bbd4ff83b9742cf8fae679cd57 (32)
- D src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-42046e0945b18dc9229c96ca49776c891e92d78fcc4ff79eb2fbc768dac38b9f (412)
- D src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunctionLagrangeForm.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-54fe4e2303e1f6c47473f511bee22cebb65aa11e8d227ff5b4b52ae5a9c04ee4 (0)
- D src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2f217b31ffbd5ed7eccef94b7bdf993b8a69fab0c86676b9d46cb45097733521 (0)
- D src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialSplineFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-225a6f49bd8f26ab63a287efae2a8071b6913652e1ce9d05e9860fb84171d4a8 (0)
- D src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialsUtils.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-3c2d34e06e5e33fcc9118c94045a1f4756876f96e1bc8f6289ec0b5ff83e45c2 (0)
- D src/main/java/org/apache/commons/math3/analysis/polynomials/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c472f019c3135a5e114f714fe32d63b20aa8d5d05b18e01d6697bd45bbb195be (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/AbstractDifferentiableUnivariateSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-cdf0e2345239df0fdfd27cb9d8b05d51635d066fc782e455e57c28401a6dca60 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/AbstractPolynomialSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-6845ba72ef80f8624ec210acd5542a44700966225cecd55b98107e4e402aeffb (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/AbstractUnivariateDifferentiableSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ec0ae604531a3c7c8c56ca413d44b737484d78c26848a2ddd9694511ad98c57d (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/AbstractUnivariateSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-92b6be3c60a36b8ec855fdf045abcd4ebea7de9abaca3c4fca1b5712ca224a55 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/AllowedSolution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c6b51df61dd7021f0ea427bce7805ae84060ed3380aaf9cbd5e911abf97fdf39 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/BaseAbstractUnivariateSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-39956efeeb5f87b0461efc0353bd3878c6557aef65ea628294183fbdb47531ad (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/BaseSecantSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-bebdce14ec244b5aaf185d086715e936c2208e774b57a95f2baea999b2fc63be (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/BaseUnivariateSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-4884452ef6ff201bcf42f83fd69389fcc33998d7004b8688fee397fd615aec05 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/BisectionSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-4fef1d0eafa220a22bbee4e229d8441bb2c1df449879fffed29fb7466696c2cd (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/BracketedRealFieldUnivariateSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-4456835216045e6744c45776da6110c9aae6819cfcce2aaed4fe82b104c6ec6f (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/BracketedUnivariateSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-29af0e56402eee3163474fccd35e922a4c75a16476c56ae8b2df110726ca1683 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/BracketingNthOrderBrentSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-a54589dca713480be0d7a273d14a7f6473b678616a710e35bb39b5f3c4cd17bd (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/BrentSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8e77e22ecc627627a9e184a2bfd26dd3fc5246e6d7aca02ceb4a1664d141b893 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/DifferentiableUnivariateSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ff0087a3bb7c9b9529391a80e68acb5198eb3e252cb394f03ab557ee03180f5a (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/FieldBracketingNthOrderBrentSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1fe2566f3ce7a6f79f8eaef0661bf179488d0bd0736b18cd2d2ec38cc32cbc55 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/IllinoisSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-445ed7fdaf080d156ced53b4da2ae352f9c718fe178eb73ee81d216d15fdb1bb (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/LaguerreSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-061c9e71ff00beaa625f4f12dad50bb1465eaf10b7992dc65a585992116e9966 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/MullerSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-42b5943949212f3aadfa2d4fcacd8c3d90f1cceb2cade4ac403107887efa80b7 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/MullerSolver2.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5785f2533590e1471effaa2a6815845bc176788af1706264bf16920fb9f63f00 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/NewtonRaphsonSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-fe04b9a81e4a3af189db841304f660baf14202e61abaecd07eb496d80ed3789a (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/NewtonSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-737125c22324f36acd71fb6983181a998e3e0132a3f6d09f31a3718d23c7e251 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/PegasusSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c3f96926536d63c69adfd4cf004b0b63d2ea25d0a614aaf30cff3066a396235b (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/PolynomialSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-f9c40d88d03353a145b11862513dd441038d55cdcbeb26b1f9f6178341ccbe54 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/RegulaFalsiSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8a671753913a345d17fdf11d3b66bad80c9dbf08691189abfb71cdc1026f11de (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/RiddersSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-e0282ae70097705fc062161714c1c14c60e5a5dbd23c2eb6a8158fae28805009 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/SecantSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5ddddd59e6a34848bbf0a3bbeb6b89e938aa26a2b3d017abd56d84f8022f244d (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/UnivariateDifferentiableSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-99c1a4ca734ee3d525e410cdf824e1a0cc6892d96d764a8459beab46167c8c66 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/UnivariateSolver.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-913f8e3c0c821c9788ccbc93524bde397217190b54bd9043aceaaff7ce61df76 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/UnivariateSolverUtils.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-a9f54942268aebfe0f8afd087d6c0e0ec68a720372713784dd582f26c5297834 (0)
- D src/main/java/org/apache/commons/math3/analysis/solvers/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-51e42b8a0464a0418faf7b0e66e2789591e92550aad6756148eebfb77bd90e86 (0)
- D src/main/java/org/apache/commons/math3/complex/Complex.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5d9fac869dd8e38d1ad8fe54aed05a68b6f24b3bcaf79e022faa2b7a6b99b135 (0)
- D src/main/java/org/apache/commons/math3/complex/ComplexField.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1b7a4586a6ec3511286c968130317d41dfbe448e44eab49334487856ef0fb6b6 (0)
- D src/main/java/org/apache/commons/math3/complex/ComplexFormat.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2dda459b7a1231101ccadb99fa823b471732806eede055a1d65a2968783c29ed (0)
- D src/main/java/org/apache/commons/math3/complex/ComplexUtils.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8a07d6e670f712f86868e70928903c168a04b71f75e2947f36be6d14fd92b257 (0)
- D src/main/java/org/apache/commons/math3/complex/Quaternion.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-e855137d7824af2c1d72efc1abae567c77ad093056f9fde01f0ca6aee3700f89 (0)
- D src/main/java/org/apache/commons/math3/complex/RootsOfUnity.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2cb3b803723066b26c91aa96ed848d74b9392a0812acf11381d311280f1679b6 (0)
- D src/main/java/org/apache/commons/math3/complex/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-7d325c137b66894506ceb83b8b9f9a57fc5c1243a1ee7c38b026a6a59f33dc60 (0)
- D src/main/java/org/apache/commons/math3/dfp/BracketingNthOrderBrentSolverDFP.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-3ffe2f2ba980716468bf37986fadad9525cef65be8fb1775e7810c589c67e2c4 (0)
- D src/main/java/org/apache/commons/math3/dfp/Dfp.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5b9f3e0eaecb6396e48c1a03f537eadeac83647c691e0f1fb971cea6b4f0f35c (0)
- D src/main/java/org/apache/commons/math3/dfp/DfpDec.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-fc531cccac98946a7411699262b319944b8eebd91e39ba30c2f33c8a7e9785a7 (0)
- D src/main/java/org/apache/commons/math3/dfp/DfpField.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-d0d47738ece3082daa439a3993191cab9937bf949699c5c05ba73864319ee615 (0)
- D src/main/java/org/apache/commons/math3/dfp/DfpMath.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c6ec4520fc61f45488d1622d764ce530af626e3451de12dfd2b60031a684aad4 (0)
- D src/main/java/org/apache/commons/math3/dfp/UnivariateDfpFunction.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-330a8b537dada4d8c3179b2f34c69452a66b3bff309af5abf63c27bfdf24b065 (0)
- D src/main/java/org/apache/commons/math3/dfp/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-39ca43b729be1076a7bba38c82cbc6ca09c23e8f299269caff17636716e0e445 (0)
- D src/main/java/org/apache/commons/math3/distribution/AbstractIntegerDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-bde53d8d924dfe0eac88b0975c2c73436628b95fcc915658f29ea07da281cc10 (0)
- D src/main/java/org/apache/commons/math3/distribution/AbstractMultivariateRealDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-6228e5fd8688d0bbcfc2998105f1f34499bed2a23ac6a32230a511ae86632bc5 (0)
- D src/main/java/org/apache/commons/math3/distribution/AbstractRealDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-cdaf14f5097a1ee0b22e710edc1ca990f465c8d2d1f6e563150216fd660b9713 (0)
- D src/main/java/org/apache/commons/math3/distribution/BinomialDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-6f8ca231c4a125e8e1f36937a83f7bd09832685bf6105334df00a51983b36efc (0)
- D src/main/java/org/apache/commons/math3/distribution/CauchyDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1bc9a24d7cc736bc944d8dabde255aeb54109d33a580987122eb3f5804f302d8 (0)
- D src/main/java/org/apache/commons/math3/distribution/ChiSquaredDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-e2642a5013fc223a9d0b77abfbc87d1fa6369faf931a5981ebf90c2ee21163fb (0)
- D src/main/java/org/apache/commons/math3/distribution/ConstantRealDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-94b12c2be4d7fa6e89668921f3d34dccad19dcd25e36640f5d764331ea510d03 (0)
- D src/main/java/org/apache/commons/math3/distribution/EnumeratedDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2a18faba4cb40bc18cc3bdd752146bc7185578dfc5b85fda7466f0f3b23e1c71 (0)
- D src/main/java/org/apache/commons/math3/distribution/EnumeratedIntegerDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2b34717e30466a596dcba28fa542391dfdb48943e08a3311a5d69fa8cab9d716 (0)
- D src/main/java/org/apache/commons/math3/distribution/EnumeratedRealDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-aa065207ee3d8804f7f6af9459321555f50b6887076775ed67a7bcc06ab54a70 (0)
- D src/main/java/org/apache/commons/math3/distribution/ExponentialDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-bc2b3647efbc7ffac4b7000e67cd277d349bd132e793dcba7d3a680b4eab44f2 (0)
- D src/main/java/org/apache/commons/math3/distribution/FDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-bd73e310aaf11a5a1fcd36aeab83461a6ce922df7a485007d1796de1cfa61817 (0)
- D src/main/java/org/apache/commons/math3/distribution/GeometricDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-9514333b3295ae1bcbf7326c632f5bd3dbd045316257263f37a0483c238112f2 (0)
- D src/main/java/org/apache/commons/math3/distribution/GumbelDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5fcf91b9ee72480be7399b8f8f229cf58aee3dbf591a07186a5dff7e4d4b84da (0)
- D src/main/java/org/apache/commons/math3/distribution/HypergeometricDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-6a9d327c5ffc2683d24bcdc85e63bb81173806c8aa2aecf3ffbeaab5a1afd25d (0)
- D src/main/java/org/apache/commons/math3/distribution/IntegerDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-e3688fc40815843c76ce55d0ca80eb0956fb07d14f15ce7420707e7047252509 (0)
- D src/main/java/org/apache/commons/math3/distribution/KolmogorovSmirnovDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-9f5d96d5615ae3f3fdb490e55b5d40b8df5c95984ce313e8527e3a1ef72e6ab9 (0)
- D src/main/java/org/apache/commons/math3/distribution/LaplaceDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8740df3a3c83a8f5efae103374130a8591e837d93731c8cc7f9c08a2ea835200 (0)
- D src/main/java/org/apache/commons/math3/distribution/LevyDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c1b4db9ecfb2e79432cea78d04c95c051852b9e6d75d1289595d97ea0c62006f (0)
- D src/main/java/org/apache/commons/math3/distribution/LogNormalDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8efabe216b6f69af531da20e7113d467a15c699e4921c5c7ffb71d30e7ac3fed (0)
- D src/main/java/org/apache/commons/math3/distribution/LogisticDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-6a22216857a96fc9e3777d2e9d1af872a9a4363bfb44daddede77659737aeebd (0)
- D src/main/java/org/apache/commons/math3/distribution/MixtureMultivariateNormalDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-34951519580159d5a54449bf6cec162aa294f1f3544118b379099ccc1b241139 (0)
- D src/main/java/org/apache/commons/math3/distribution/MixtureMultivariateRealDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5453fbf9eec553f02658ceb865b6aa0bc200a0682b15b0ff706bdc1e3c1fcc79 (0)
- D src/main/java/org/apache/commons/math3/distribution/MultivariateNormalDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1c88844a7fa2883e28484632fe5ec2576265d168711d9962d1b50c7c0f4b75e7 (0)
- D src/main/java/org/apache/commons/math3/distribution/MultivariateRealDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ff0465f34476655a315f85d95a7603c030b0077a1315de206bb7fd1e8180442a (0)
- D src/main/java/org/apache/commons/math3/distribution/NakagamiDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-61d5e168f56f0674dc198fe3717588ddbfa28fb2cd5c11a0f5f3ba226010518a (0)
- D src/main/java/org/apache/commons/math3/distribution/NormalDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-3009fc9cf0ef9d17669b3804efd72b5bb60cf2cf294b6fa18fab78e7fc5e090b (0)
- D src/main/java/org/apache/commons/math3/distribution/ParetoDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-cb3d8d8ea0a3bfa4ee9def52f48d21a770ee835af6541bde133af3eab3bf5275 (0)
- D src/main/java/org/apache/commons/math3/distribution/PascalDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-eb46e11b8fc8d8085f3602da300fc6ce48b8eb2f86a844a474538734c84d4339 (0)
- D src/main/java/org/apache/commons/math3/distribution/PoissonDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-46d569cf9598aa60ea3ce364bc5d73fafd71eaadbc28c75cd55a081c7675fcb4 (0)
- D src/main/java/org/apache/commons/math3/distribution/RealDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c30c48854a1d45ea8a50226034e024b84ec24771735d6c512cf136c85fcaeba0 (0)
- D src/main/java/org/apache/commons/math3/distribution/SaddlePointExpansion.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-f5f8783085b28f1137f3bff07e525cecd06c343df8f722d018b04e331421426b (0)
- D src/main/java/org/apache/commons/math3/distribution/TDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2733bca375880241f7b52629ff76e8132058aeedfaa4486b144c32f3e4f34893 (0)
- D src/main/java/org/apache/commons/math3/distribution/TriangularDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-af17195f109ff47b48ab1d4cd9fd76244c2edd309e7b339434b0de60339f2ce9 (0)
- D src/main/java/org/apache/commons/math3/distribution/UniformIntegerDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-9e0673dea017ac54b86af37c8b6dd159e695072d266dac9b0ffbafbb5105c8c1 (0)
- D src/main/java/org/apache/commons/math3/distribution/UniformRealDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-dd50db656b9969c34a51b572db3239314babb260bee219f0d105e67d4421b3cb (0)
- D src/main/java/org/apache/commons/math3/distribution/WeibullDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-4c162a3b3bab25d23b556ac35bc83d27f7329c0311c406f89f89db5b4bb3c578 (0)
- D src/main/java/org/apache/commons/math3/distribution/ZipfDistribution.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-7964b668d1bf554a9a5e6a3f8419bd3c659c8d5807114e59440dbcfbd8504499 (0)
- D src/main/java/org/apache/commons/math3/distribution/fitting/MultivariateNormalMixtureExpectationMaximization.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-964a03a0e7d99e2c71f78c4d0e6cb77d2d8e728a5bef2365c29af043e9fd39f5 (0)
- D src/main/java/org/apache/commons/math3/distribution/fitting/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-376892c5d99d79d72b5d96c0c9d1f5ada3eeb2dbc8be0f64f27512008264e862 (0)
- D src/main/java/org/apache/commons/math3/distribution/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-f2071969286528b64a8ad2a6a80132f8add188236953465a2c41c77a96597a27 (0)
- D src/main/java/org/apache/commons/math3/exception/ConvergenceException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-3c03a53ce56dcebf6003ef952766ec27a6441c43bd3a65cf9b0c0889578d8542 (0)
- D src/main/java/org/apache/commons/math3/exception/DimensionMismatchException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-038f6cdc83b18bc19a7355a585f0a047ceffb7c649ed2f7d1bc73a592dbd524d (0)
- D src/main/java/org/apache/commons/math3/exception/InsufficientDataException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-28f5f7bac75317da8a54f100f8db64b1b539ade7869b65e7a746a876a8bf9320 (0)
- D src/main/java/org/apache/commons/math3/exception/MathArithmeticException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-bcceef850b3b3c6d0c045379f6916c65ce0cc0c259e3212e363225e1f3aa1bab (0)
- D src/main/java/org/apache/commons/math3/exception/MathIllegalArgumentException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-aecb3c55e78ec9226682408f0364b2cd993a1d6202dd1d77fb484be083a68ef4 (0)
- D src/main/java/org/apache/commons/math3/exception/MathIllegalNumberException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-c71b525a048092fa0442b1cb0959bea94c9ae51cd0000f66bb47a8f754588346 (0)
- D src/main/java/org/apache/commons/math3/exception/MathIllegalStateException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-648b9d379970c99e2798889bb6ea176840c0fc4a2b371831da8f0882d2496b1e (0)
- D src/main/java/org/apache/commons/math3/exception/MathInternalError.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-794798a1a917422e7ec5ffd449a19fe48129a5129f8720492fc082833684633b (0)
- D src/main/java/org/apache/commons/math3/exception/MathParseException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-f9857fd042cf3711412f982aa26a4497caffd9b3abe01203b885f31237eef75e (0)
- D src/main/java/org/apache/commons/math3/exception/MathRuntimeException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-886a57f5ba66aaee4e73668aab192a374ef49bfb4e765f8e883513d2c2d20367 (0)
- D src/main/java/org/apache/commons/math3/exception/MathUnsupportedOperationException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-af1318e23a01b035173ad475c3ea0bceacc03511dd26ad587cb5489b05869880 (0)
- D src/main/java/org/apache/commons/math3/exception/MaxCountExceededException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-903ab3ae5af1dc7ac1f10cb8209680d70d2a1520272e85377f4da0951d5c15b7 (0)
- D src/main/java/org/apache/commons/math3/exception/MultiDimensionMismatchException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1f01325d0c805cc867191f436b2406b99ae2a9c3769aa843fc483091f64a6e31 (0)
- D src/main/java/org/apache/commons/math3/exception/NoBracketingException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-bd8ffb3b5934c147f474146578acbb0e8e2952ec05df1f831ded0b2ab7b35f28 (0)
- D src/main/java/org/apache/commons/math3/exception/NoDataException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-93318494e06eacefe8b2a52d8740b421c2b865d55fb2747ff42dcc0266a6e86c (0)
- D src/main/java/org/apache/commons/math3/exception/NonMonotonicSequenceException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-2574a886135b22823aacaf6828aa8c103c4c5b905b2a5ff33c6a2ed8baf44642 (0)
- D src/main/java/org/apache/commons/math3/exception/NotANumberException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5d2ed6639a6d9ae079a05233916e3a856e5d92417f828db033a69bdbec73a7f2 (0)
- D src/main/java/org/apache/commons/math3/exception/NotFiniteNumberException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-265b1238418ca051965b7871ef3f89c06e16fc22a4ab04f4194814bb0c8ffce8 (0)
- D src/main/java/org/apache/commons/math3/exception/NotPositiveException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-cb401ab4e2ed18b6f94bedcee6334ac9496a9877bd6e9a9c174a114704e694a1 (0)
- D src/main/java/org/apache/commons/math3/exception/NotStrictlyPositiveException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ec06c27e9dc7e0cf43c0aa4107876481de8fbfc0c6f9658fa9e603f5b382191b (0)
- D src/main/java/org/apache/commons/math3/exception/NullArgumentException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8d58fbd0acda0fd0eba23ff2cb857b31118f6c818f5d286bc3f8dfd7eb758aa7 (0)
- D src/main/java/org/apache/commons/math3/exception/NumberIsTooLargeException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-ad9b9a6180035ee98da9e6b62c2e3052c9c47e1b32781bde362935b8b11c692e (0)
- D src/main/java/org/apache/commons/math3/exception/NumberIsTooSmallException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-a6e9d7d8b260ac674018ad17e776ed44271e9bdcdc72134a5e2c5b6df781ece0 (0)
- D src/main/java/org/apache/commons/math3/exception/OutOfRangeException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-522a0c09a39c71ada3c6a90e9fc803f997e100021c911955c7063b93a138c730 (0)
- D src/main/java/org/apache/commons/math3/exception/TooManyEvaluationsException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-44c79be300c5e4e09a6390af7de553c57c85af8e4de1189f73c4a3918f387ae8 (0)
- D src/main/java/org/apache/commons/math3/exception/TooManyIterationsException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-db3a66e53fbebb7e9088b63f3e4d10f3df5df9e079ad9437a9fe0e4f33fd154a (0)
- D src/main/java/org/apache/commons/math3/exception/ZeroException.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-a2f1b2a8b331a9cf906e7d65cc4ae2ebfa51d5b837e6e6f80f5069d8a0e33ff2 (0)
- D src/main/java/org/apache/commons/math3/exception/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-daca2d9dc47b33e24942731fd7e641103218025dfeaadc100129b8e6b0deaab5 (0)
- D src/main/java/org/apache/commons/math3/exception/util/ArgUtils.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-438bbac7057f978e1b36c69a3f4a82f9bbef16f88e40d4071597198298248ef1 (0)
- D src/main/java/org/apache/commons/math3/exception/util/DummyLocalizable.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-8864a4090136137288b82d1380e9ed9b1d351a0e6f75508fb11d662be36bd54e (0)
- D src/main/java/org/apache/commons/math3/exception/util/ExceptionContext.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-90679ec0b144ee02bc6d42beea3a849adb217317b09d1a514fe5a2bfcf252345 (0)
- D src/main/java/org/apache/commons/math3/exception/util/ExceptionContextProvider.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-64b43f2fa343ff174cf5bd4328759c867db3906c7bd7b857ef11dc430938f9bf (0)
- D src/main/java/org/apache/commons/math3/exception/util/Localizable.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-5df11615a32c611f1078c59f6ada8701d20ef1aa6bacfd25f032e983180c3a28 (0)
- D src/main/java/org/apache/commons/math3/exception/util/LocalizedFormats.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-b0f1a5aea54cc735712c5a5518097351c4159680aa1e68f2fde5e1658431bef1 (0)
- D src/main/java/org/apache/commons/math3/exception/util/package-info.java https://github.com/happyjack27/autoredistrict/pull/222/files#diff-7e3b04a87a66c8e2942bc3bb1941f2db01176c937a82e3abb9047774dd193444 (0)
- D src/main/java/org/apache/commons/math3/filter/DefaultMeasurementModel.java <https://github.com/happyjack27/autoredistrict/pull/222/files#diff-1eb
Ah, I see you extended the classes I modified and put my new / modified code in the extended class. I was thinking the same thing. Looks good.
Replace the copied-in code for the
org.apache.commons.commons-math3
library with that of a Maven dependency (of the same library).Benefits:
org.apache.commons.commons-math3
library -- it's a simple matter of updating the version in the Maven POM (assuming no breaking changes, of course).Obviously, the
org.apache.commons.commons-math3
code is always available on Apache's repo to look at, if desired.