Skip to content

Commit

Permalink
fix: rollup didn't understood ..
Browse files Browse the repository at this point in the history
  • Loading branch information
maasencioh committed Jul 26, 2017
1 parent dccd40c commit 3af231d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/dc/cholesky.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Matrix, WrapperMatrix2D} from '..';
import {Matrix, WrapperMatrix2D} from '../index';

/**
* @class CholeskyDecomposition
Expand Down
2 changes: 1 addition & 1 deletion src/dc/evd.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Matrix, WrapperMatrix2D} from '..';
import {Matrix, WrapperMatrix2D} from '../index';
import {hypotenuse, getFilled2DArray} from './util';

/**
Expand Down
2 changes: 1 addition & 1 deletion src/dc/lu.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Matrix, WrapperMatrix2D} from '..';
import {Matrix, WrapperMatrix2D} from '../index';

/**
* @class LuDecomposition
Expand Down
2 changes: 1 addition & 1 deletion src/dc/qr.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Matrix, WrapperMatrix2D} from '..';
import {Matrix, WrapperMatrix2D} from '../index';
import {hypotenuse} from './util';

/**
Expand Down
2 changes: 1 addition & 1 deletion src/dc/svd.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Matrix, WrapperMatrix2D} from '..';
import {Matrix, WrapperMatrix2D} from '../index';
import {hypotenuse, getFilled2DArray} from './util';

/**
Expand Down
2 changes: 1 addition & 1 deletion src/decompositions.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Matrix, WrapperMatrix2D} from '..';
import {Matrix, WrapperMatrix2D} from './index';

import LuDecomposition from './dc/lu';
import QrDecomposition from './dc/qr';
Expand Down

0 comments on commit 3af231d

Please sign in to comment.