diff --git a/.gitattributes b/.gitattributes index 10a16e6..1c88e69 100644 --- a/.gitattributes +++ b/.gitattributes @@ -40,10 +40,27 @@ *.mov binary # Override what is considered "vendored" by GitHub's linguist: -/deps/** linguist-vendored=false -/lib/node_modules/** linguist-vendored=false linguist-generated=false -test/fixtures/** linguist-vendored=false -tools/** linguist-vendored=false +/lib/node_modules/** -linguist-vendored -linguist-generated -# Override what is considered "documentation" by GitHub's linguist: -examples/** linguist-documentation=false +# Configure directories which should *not* be included in GitHub language statistics: +/deps/** linguist-vendored +/dist/** linguist-generated +/workshops/** linguist-vendored + +benchmark/** linguist-vendored +docs/* linguist-documentation +etc/** linguist-vendored +examples/** linguist-documentation +scripts/** linguist-vendored +test/** linguist-vendored +tools/** linguist-vendored + +# Configure files which should *not* be included in GitHub language statistics: +Makefile linguist-vendored +*.mk linguist-vendored +*.jl linguist-vendored +*.py linguist-vendored +*.R linguist-vendored + +# Configure files which should be included in GitHub language statistics: +docs/types/*.d.ts -linguist-documentation diff --git a/.github/.keepalive b/.github/.keepalive new file mode 100644 index 0000000..1fcc51f --- /dev/null +++ b/.github/.keepalive @@ -0,0 +1 @@ +2024-08-01T02:46:49.191Z diff --git a/.github/workflows/productionize.yml b/.github/workflows/productionize.yml index ec90164..f4575e9 100644 --- a/.github/workflows/productionize.yml +++ b/.github/workflows/productionize.yml @@ -94,8 +94,8 @@ jobs: node -e "var pkg = require( './package.json' ); pkg.dependencies[ '@stdlib/error-tools-fmtprodmsg' ] = '^$PKG_VERSION'; require( 'fs' ).writeFileSync( 'package.json', JSON.stringify( pkg, null, 2 ) );" fi - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -191,8 +191,8 @@ jobs: # Pin action to full length commit SHA uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -344,7 +344,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -367,8 +366,8 @@ jobs: # Pin action to full length commit SHA uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -518,7 +517,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -541,8 +539,8 @@ jobs: # Pin action to full length commit SHA uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -698,7 +696,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -738,8 +735,8 @@ jobs: echo "bump=true" >> $GITHUB_OUTPUT fi - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' if: steps.check-if-bump.outputs.bump run: | git config --local user.email "noreply@stdlib.io" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3eec50e..2888b88 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -72,8 +72,8 @@ jobs: node-version: 20 timeout-minutes: 5 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -94,6 +94,10 @@ jobs: # Replace branch in README.md link definitions for badges with the new version: find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g" + # Rewrite CHANGELOG.md to replace "Unreleased" with the new version: + sed -Ei "s/Unreleased/${NEW_VERSION}/g" CHANGELOG.md + sed -Ei "s/unreleased/v${NEW_VERSION}/g" CHANGELOG.md + # Create a new commit and tag: git add package.json README.md git commit -m "Release v${NEW_VERSION}" @@ -202,7 +206,7 @@ jobs: # Publish package to npm: - name: 'Publish package to npm' # Pin action to full length commit SHA - uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1 + uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1 with: token: ${{ secrets.NPM_TOKEN }} access: public @@ -218,7 +222,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 261934f..9810c02 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -95,6 +95,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_bundles.yml b/.github/workflows/test_bundles.yml index 6d77abd..5b5879a 100644 --- a/.github/workflows/test_bundles.yml +++ b/.github/workflows/test_bundles.yml @@ -94,7 +94,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -139,7 +138,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -184,6 +182,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index f4eda1e..2bcf0cd 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -119,7 +119,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 6415bf4..1f46b19 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -81,6 +81,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.gitignore b/.gitignore index 49b206b..4fdc97c 100644 --- a/.gitignore +++ b/.gitignore @@ -101,6 +101,8 @@ docs/**/node_modules/ pids *.pid *.seed +yarn.lock +package-lock.json # Typescript # ############## diff --git a/.npmrc b/.npmrc index 5af9067..58dbd10 100644 --- a/.npmrc +++ b/.npmrc @@ -27,5 +27,5 @@ shrinkwrap = false # Disable automatically "saving" dependencies on install: save = false -# Generate provenance metadata: -provenance = true +# Do not generate provenance metadata: +provenance = false diff --git a/CHANGELOG.md b/CHANGELOG.md index ebd6c2f..5df0eef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,4 +2,157 @@ > Package changelog. -See [GitHub Releases](https://github.com/stdlib-js/stats-base-dists-hypergeometric-kurtosis/releases) for the changelog. \ No newline at end of file +
+ +## Unreleased (2024-08-01) + +
+ +### Commits + +
+ +- [`22c4d29`](https://github.com/stdlib-js/stdlib/commit/22c4d29898e2b5bb4cb071a6b7f62536027eaf28) - **docs:** remove blank line _(by Athan Reines)_ + +
+ +
+ + + +
+ +### Contributors + +A total of 1 person contributed to this release. Thank you to this contributor: + +- Athan Reines + +
+ + + +
+ + + +
+ +## 0.2.1 (2024-07-27) + +No changes reported for this release. + +
+ + + +
+ +## 0.2.0 (2024-02-14) + +No changes reported for this release. + +
+ + + +
+ +## 0.1.1 (2023-10-09) + +No changes reported for this release. + +
+ + + +
+ +## 0.1.0 (2023-09-23) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.8 (2022-07-08) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.7 (2022-02-16) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.6 (2021-08-22) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.5 (2021-07-06) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.4 (2021-06-27) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.3 (2021-06-16) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.2 (2021-06-15) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.1 (2021-06-14) + +No changes reported for this release. + +
+ + + diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 4500383..26a1c46 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -5,6 +5,7 @@ Adarsh Palaskar Aditya Sapra AgPriyanshu18 <113460573+AgPriyanshu18@users.noreply.github.com> +Aleksandr <112382387+alextes90@users.noreply.github.com> Ali Salesi Aman Bhansali Amit Jimiwal @@ -18,6 +19,7 @@ Chinmay Joshi <86140365+JawHawk@users.noreply.github.com> Christopher Dambamuromo Dan Rose Daniel Killenberger +Daniel Yu <40680511+Daniel777y@users.noreply.github.com> Dominik Moritz Dorrin Sotoudeh EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com> @@ -25,6 +27,7 @@ Frank Kovacs Golden Kumar <103646877+AuenKr@users.noreply.github.com> Gunj Joshi Harshita Kalani +Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com> Jaimin Godhani <112328542+Jai0401@users.noreply.github.com> James Gelok Jaysukh Makvana @@ -48,6 +51,7 @@ Muhammad Haris Naresh Jagadeesan NightKnight Nithin Katta <88046362+nithinkatta@users.noreply.github.com> +Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com> Ognjen Jevremović Oneday12323 <107678750+Oneday12323@users.noreply.github.com> Philipp Burckhardt @@ -60,6 +64,7 @@ Pushpendra Chandravanshi Raunak Kumar Gupta Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com> Ricky Reusser +Ridam Garg <67867319+RidamGarg@users.noreply.github.com> Robert Gislason Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Rutam <138517416+performant23@users.noreply.github.com> @@ -69,8 +74,11 @@ Seyyed Parsa Neshaei Shashank Shekhar Singh Shivam <11shivam00@gmail.com> Shraddheya Shendre +Shubh Mehta <93862397+Shubh942@users.noreply.github.com> Shubham Mishra -Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com> +Sivam Das <100067002+Sivam2313@users.noreply.github.com> +Snehil Shah +Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com> Spandan Barve Stephannie Jiménez Gacha Suraj kumar <125961509+kumarsuraj212003@users.noreply.github.com> @@ -79,8 +87,10 @@ Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com> Utkarsh Utkarsh Raj Varad Gupta +Xiaochuan Ye Yernar Yergaziyev naveen nishant-s7 <97207366+nishant-s7@users.noreply.github.com> orimiles5 <97595296+orimiles5@users.noreply.github.com> +rainn <88160429+AmCodesLame@users.noreply.github.com> rei2hu diff --git a/package.json b/package.json index db7f2f9..94f4b49 100644 --- a/package.json +++ b/package.json @@ -37,20 +37,20 @@ "url": "https://github.com/stdlib-js/stdlib/issues" }, "dependencies": { - "@stdlib/constants-float64-pinf": "^0.2.1", - "@stdlib/math-base-assert-is-nonnegative-integer": "^0.1.2" + "@stdlib/constants-float64-pinf": "^0.2.2", + "@stdlib/math-base-assert-is-nonnegative-integer": "^0.2.1" }, "devDependencies": { - "@stdlib/constants-float64-eps": "^0.2.1", - "@stdlib/math-base-assert-is-nan": "^0.2.1", - "@stdlib/math-base-special-abs": "^0.2.1", - "@stdlib/math-base-special-ceil": "^0.2.1", - "@stdlib/math-base-special-round": "^0.2.1", + "@stdlib/constants-float64-eps": "^0.2.2", + "@stdlib/math-base-assert-is-nan": "^0.2.2", + "@stdlib/math-base-special-abs": "^0.2.2", + "@stdlib/math-base-special-ceil": "^0.2.2", + "@stdlib/math-base-special-round": "^0.3.0", "@stdlib/random-base-randu": "^0.2.1", "tape": "git+https://github.com/kgryte/tape.git#fix/globby", "istanbul": "^0.4.1", "tap-min": "git+https://github.com/Planeshifter/tap-min.git", - "@stdlib/bench-harness": "^0.2.1" + "@stdlib/bench-harness": "^0.2.2" }, "engines": { "node": ">=0.10.0", diff --git a/test/fixtures/julia/data.json b/test/fixtures/julia/data.json index 23c019e..4860898 100644 --- a/test/fixtures/julia/data.json +++ b/test/fixtures/julia/data.json @@ -1 +1 @@ -{"expected":[0.16290304256861438,-0.317937701396348,-0.11172955120795729,-0.02811651867353238,-0.1541908914728682,-0.08258312319534512,-0.1228862290611217,-0.8631458244190952,0.3387093790394261,2.481606993942615,-0.020863833977154005,-0.03986006976659952,-0.02180584488769687,1.0032730606802112,-0.03362571762740184,-0.044744217493701846,0.14562813697892021,-0.22347054674193026,-0.04293327271058555,-0.5162227732125471,0.264031746031746,-0.02815538877140657,-0.09722542353821499,-0.0429256945714626,-0.07205647929475281,-0.27608161617991966,-0.11703936810419606,0.37817543730552516,22.55450473389677,-0.014646300965552942,0.3044564245267251,-0.024966898365526593,-0.013198446798954237,-0.021059141559791245,-0.05658136584860723,-0.12115131578947369,-0.051881276360373416,0.35223604049395235,-0.05327868257934151,-0.16993367978584706,-0.03881312838019329,-0.08090811899853281,-0.3518818413555256,-0.02763832137722889,-0.07491275731071649,-0.03461571433614217,-1.0892203035060177,-0.02008398157074369,-0.014736679912814368,-0.017509117682110255,-0.042923481661876164,-0.10454972019210455,0.0017998805941693303,-0.035852599412559236,-0.1263902852706361,5.470432480141218,0.4662354544621587,-0.022676784527958734,-0.14768121262178988,-0.03829558771924159,-0.02514710309835209,-0.054573563536477875,-0.13589172445241127,0.04748489072554269,-1.8828626923651577,0.008179767011852,0.14931854759833837,-0.026196159287488387,-0.20656834324402454,-0.6261872455902306,-0.012263519464100238,-0.04951631469151685,-0.019518583853747377,-0.06529647909836193,-0.030438459625987898,-0.25967307993114436,1.857751251673302,-0.03288934426229508,-0.21552739507767346,-0.08814432989690722,-0.46767697907965083,-0.036495262237409544,0.32932052909398357,-0.816082304526749,-0.024433498146610808,-0.038702882870351285,-0.2811271747812672,1.9244717252927643,-0.07331396507360328,-0.17954545454545454,0.6909111877234664,-0.042302662203048805,-0.33569739952718675,-0.04958756629992354,-0.41198462803501507,0.14706320301311357,0.1825408366051088,-0.09176541073092798,-0.08496088680790144,20.81781005859375],"N":[200.0,23.0,187.0,129.0,51.0,186.0,117.0,151.0,106.0,138.0,144.0,214.0,200.0,218.0,188.0,143.0,144.0,117.0,158.0,189.0,23.0,127.0,197.0,90.0,94.0,108.0,71.0,102.0,155.0,141.0,220.0,156.0,210.0,212.0,77.0,22.0,88.0,128.0,195.0,75.0,192.0,71.0,22.0,217.0,51.0,144.0,137.0,197.0,155.0,134.0,214.0,138.0,185.0,216.0,73.0,114.0,110.0,169.0,40.0,103.0,138.0,103.0,53.0,151.0,166.0,201.0,157.0,164.0,25.0,89.0,200.0,187.0,120.0,104.0,218.0,151.0,165.0,63.0,61.0,99.0,134.0,67.0,185.0,182.0,151.0,170.0,64.0,136.0,218.0,35.0,128.0,107.0,50.0,126.0,130.0,132.0,48.0,66.0,163.0,98.0],"K":[192.0,7.0,56.0,54.0,36.0,56.0,35.0,149.0,97.0,7.0,60.0,160.0,61.0,27.0,125.0,106.0,17.0,111.0,53.0,65.0,3.0,87.0,110.0,16.0,21.0,42.0,31.0,92.0,3.0,68.0,17.0,110.0,123.0,141.0,56.0,14.0,65.0,23.0,45.0,31.0,102.0,14.0,18.0,171.0,35.0,95.0,39.0,94.0,67.0,57.0,152.0,123.0,165.0,178.0,46.0,113.0,10.0,117.0,9.0,63.0,96.0,40.0,43.0,18.0,69.0,30.0,20.0,155.0,14.0,22.0,123.0,70.0,54.0,30.0,71.0,109.0,9.0,35.0,19.0,33.0,130.0,41.0,22.0,117.0,98.0,55.0,31.0,7.0,145.0,28.0,117.0,86.0,25.0,100.0,82.0,15.0,39.0,52.0,97.0,2.0],"n":[30.0,4.0,11.0,39.0,8.0,15.0,10.0,57.0,96.0,5.0,50.0,25.0,61.0,3.0,38.0,27.0,12.0,37.0,30.0,3.0,3.0,49.0,17.0,13.0,10.0,6.0,12.0,8.0,2.0,64.0,16.0,96.0,78.0,59.0,29.0,10.0,34.0,2.0,11.0,9.0,35.0,14.0,9.0,133.0,33.0,36.0,1.0,55.0,67.0,57.0,28.0,59.0,155.0,125.0,11.0,11.0,8.0,61.0,8.0,30.0,65.0,23.0,29.0,18.0,1.0,23.0,11.0,34.0,6.0,1.0,104.0,28.0,49.0,19.0,42.0,4.0,6.0,31.0,6.0,15.0,74.0,31.0,8.0,2.0,49.0,33.0,6.0,6.0,19.0,10.0,7.0,13.0,5.0,53.0,4.0,12.0,2.0,37.0,18.0,2.0]} \ No newline at end of file +{"expected":[0.16290304256861438,-0.317937701396348,-0.11172955120795729,-0.02811651867353238,-0.1541908914728682,-0.08258312319534512,-0.1228862290611217,-0.8631458244190952,0.3387093790394261,2.481606993942615,-0.020863833977154005,-0.03986006976659952,-0.02180584488769687,1.0032730606802112,-0.03362571762740184,-0.044744217493701846,0.14562813697892021,-0.22347054674193026,-0.04293327271058555,-0.5162227732125471,0.264031746031746,-0.02815538877140657,-0.09722542353821499,-0.0429256945714626,-0.07205647929475281,-0.27608161617991966,-0.11703936810419606,0.37817543730552516,22.55450473389677,-0.014646300965552942,0.3044564245267251,-0.024966898365526593,-0.013198446798954237,-0.021059141559791245,-0.05658136584860723,-0.12115131578947369,-0.051881276360373416,0.35223604049395235,-0.05327868257934151,-0.16993367978584706,-0.03881312838019329,-0.08090811899853281,-0.3518818413555256,-0.02763832137722889,-0.07491275731071649,-0.03461571433614217,-1.0892203035060177,-0.02008398157074369,-0.014736679912814368,-0.017509117682110255,-0.042923481661876164,-0.10454972019210455,0.0017998805941693303,-0.035852599412559236,-0.1263902852706361,5.470432480141218,0.4662354544621587,-0.022676784527958734,-0.14768121262178988,-0.03829558771924159,-0.02514710309835209,-0.054573563536477875,-0.13589172445241127,0.04748489072554269,-1.8828626923651577,0.008179767011852,0.14931854759833837,-0.026196159287488387,-0.20656834324402454,-0.6261872455902306,-0.012263519464100238,-0.04951631469151685,-0.019518583853747377,-0.06529647909836193,-0.030438459625987898,-0.25967307993114436,1.857751251673302,-0.03288934426229508,-0.21552739507767346,-0.08814432989690722,-0.46767697907965083,-0.036495262237409544,0.32932052909398357,-0.816082304526749,-0.024433498146610808,-0.038702882870351285,-0.2811271747812672,1.9244717252927643,-0.07331396507360328,-0.17954545454545454,0.6909111877234664,-0.042302662203048805,-0.33569739952718675,-0.04958756629992354,-0.41198462803501507,0.14706320301311357,0.1825408366051088,-0.09176541073092798,-0.08496088680790144,20.81781005859375],"N":[200.0,23.0,187.0,129.0,51.0,186.0,117.0,151.0,106.0,138.0,144.0,214.0,200.0,218.0,188.0,143.0,144.0,117.0,158.0,189.0,23.0,127.0,197.0,90.0,94.0,108.0,71.0,102.0,155.0,141.0,220.0,156.0,210.0,212.0,77.0,22.0,88.0,128.0,195.0,75.0,192.0,71.0,22.0,217.0,51.0,144.0,137.0,197.0,155.0,134.0,214.0,138.0,185.0,216.0,73.0,114.0,110.0,169.0,40.0,103.0,138.0,103.0,53.0,151.0,166.0,201.0,157.0,164.0,25.0,89.0,200.0,187.0,120.0,104.0,218.0,151.0,165.0,63.0,61.0,99.0,134.0,67.0,185.0,182.0,151.0,170.0,64.0,136.0,218.0,35.0,128.0,107.0,50.0,126.0,130.0,132.0,48.0,66.0,163.0,98.0],"K":[192.0,7.0,56.0,54.0,36.0,56.0,35.0,149.0,97.0,7.0,60.0,160.0,61.0,27.0,125.0,106.0,17.0,111.0,53.0,65.0,3.0,87.0,110.0,16.0,21.0,42.0,31.0,92.0,3.0,68.0,17.0,110.0,123.0,141.0,56.0,14.0,65.0,23.0,45.0,31.0,102.0,14.0,18.0,171.0,35.0,95.0,39.0,94.0,67.0,57.0,152.0,123.0,165.0,178.0,46.0,113.0,10.0,117.0,9.0,63.0,96.0,40.0,43.0,18.0,69.0,30.0,20.0,155.0,14.0,22.0,123.0,70.0,54.0,30.0,71.0,109.0,9.0,35.0,19.0,33.0,130.0,41.0,22.0,117.0,98.0,55.0,31.0,7.0,145.0,28.0,117.0,86.0,25.0,100.0,82.0,15.0,39.0,52.0,97.0,2.0],"n":[30.0,4.0,11.0,39.0,8.0,15.0,10.0,57.0,96.0,5.0,50.0,25.0,61.0,3.0,38.0,27.0,12.0,37.0,30.0,3.0,3.0,49.0,17.0,13.0,10.0,6.0,12.0,8.0,2.0,64.0,16.0,96.0,78.0,59.0,29.0,10.0,34.0,2.0,11.0,9.0,35.0,14.0,9.0,133.0,33.0,36.0,1.0,55.0,67.0,57.0,28.0,59.0,155.0,125.0,11.0,11.0,8.0,61.0,8.0,30.0,65.0,23.0,29.0,18.0,1.0,23.0,11.0,34.0,6.0,1.0,104.0,28.0,49.0,19.0,42.0,4.0,6.0,31.0,6.0,15.0,74.0,31.0,8.0,2.0,49.0,33.0,6.0,6.0,19.0,10.0,7.0,13.0,5.0,53.0,4.0,12.0,2.0,37.0,18.0,2.0]} diff --git a/test/fixtures/julia/runner.jl b/test/fixtures/julia/runner.jl index a7a6490..b4693d6 100644 --- a/test/fixtures/julia/runner.jl +++ b/test/fixtures/julia/runner.jl @@ -60,6 +60,7 @@ function gen( N, K, n, name ) # Write the data to the output filepath as JSON: outfile = open( filepath, "w" ); write( outfile, JSON.json(data) ); + write( outfile, "\n" ); close( outfile ); end