Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restructure class methods into individual files #161

Merged
merged 37 commits into from
Aug 6, 2019
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b97f75f
NDArray restructured, tests passing
mateogianolio Apr 9, 2019
a2c113b
finishing touches on NDArray
mateogianolio Apr 9, 2019
b3277fa
prepare Vector and Matrix, fix tslint
mateogianolio Apr 9, 2019
653acda
Merge branch 'master' into improvement/restructure
mateogianolio Apr 9, 2019
1d31f9a
Merge branch 'master' into improvement/restructure
mateogianolio Apr 16, 2019
37c0158
restructure methods of Vector
mateogianolio Apr 16, 2019
13d069e
disable duplication checks
mateogianolio Apr 16, 2019
b4fe396
...
mateogianolio May 2, 2019
44dcbc1
improve types, replace *.call(this, ...) with this.*(...)
mateogianolio Jun 2, 2019
737d48c
passing tests and lint
mateogianolio Jun 3, 2019
a97d1d2
Merge branch 'master' into improvement/restructure
mateogianolio Jun 3, 2019
103f920
Merge branch 'master' into improvement/restructure
mateogianolio Jul 10, 2019
00844e7
upd dependencies, fix vulns, upd benchmarks, upd docs
mateogianolio Jul 30, 2019
f68addb
fix conflicts
mateogianolio Jul 30, 2019
a5e027d
fix docs
mateogianolio Jul 30, 2019
8a9298e
improve docs
mateogianolio Jul 30, 2019
41a9fff
merge w/ master and resolve conflict
mateogianolio Jul 30, 2019
fd55b76
upd travis buildspec
mateogianolio Jul 30, 2019
8fba48e
upgrade matplotnode to 0.4.1
mateogianolio Jul 30, 2019
e9b9499
upgrade matplotnode to 0.4.2
mateogianolio Jul 30, 2019
8fa6fb7
add libpython-dev to travis buildspec
mateogianolio Jul 30, 2019
9a57349
upd g++ to 4.9
mateogianolio Jul 30, 2019
2f9437d
rm clang
mateogianolio Jul 30, 2019
2d4cf97
nyc config updates
mateogianolio Jul 30, 2019
d9c610a
fix issues with inheritance, split up tests into separate files, rear…
mateogianolio Aug 4, 2019
966e8b9
upgrade deps
mateogianolio Aug 4, 2019
7f6679e
fix #39
mateogianolio Aug 4, 2019
429ea5c
improvements
mateogianolio Aug 4, 2019
ce5b6bd
minor cleanup
mateogianolio Aug 4, 2019
d6a9d81
cleanup jacobi method
mateogianolio Aug 5, 2019
5887608
add lapack optimisations, rename some methods
mateogianolio Aug 5, 2019
ea67e85
dist + docs
mateogianolio Aug 5, 2019
4969c7c
...
mateogianolio Aug 5, 2019
bc9835b
benchmarks
mateogianolio Aug 6, 2019
df5e1fa
add dtype
mateogianolio Aug 6, 2019
b2067ef
improvements
mateogianolio Aug 6, 2019
3d71147
switch version from 6.0.0 to 6.0.0-beta.0
mateogianolio Aug 6, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
version: 2
plugins:
duplication:
enabled: false
tslint:
config: tsconfig.json
enabled: true
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "A high performance linear algebra library.",
"main": "built/index.js",
"scripts": {
"test:node": "nyc mocha -r ts-node/register ./src/*.spec.ts",
"test:browser": "mochify --plugin tsify ./src/*.spec.ts",
"test:node": "nyc mocha -r ts-node/register \"./src/**/*.spec.ts\"",
"test:browser": "mochify --plugin tsify \"./src/**/*.spec.ts\"",
"test": "npm run test:node && npm run test:browser",
"lint": "tslint -p . -c tslint.json 'src/*.ts'",
"benchmark": "ts-node ./src/NDArray.bench.ts && ts-node ./src/Vector.bench.ts && ts-node ./src/Matrix.bench.ts",
Expand Down
Loading