Skip to content

Commit

Permalink
Got more tests to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
curran committed Dec 30, 2020
1 parent d9e5780 commit 0c3cb94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/adjacent_exchange.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { inverse_permutation } from './permutation';

// Accorging to
// E. R. Gansner, E. Koutsofios, S. C. North, and K.-P. Vo. 1993. A
// Technique for Drawing Directed Graphs. IEEE Trans. Softw. Eng. 19, 3
Expand Down
1 change: 1 addition & 0 deletions src/barycenter_order.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { cmp_number } from './utils';
import { inverse_permutation } from './permutation';
import { debug } from './core';
import { count_crossings } from './count_crossings';

export function barycenter_order(graph, comps, max_iter) {
var orders = [[], [], 0];
Expand Down
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { adjacent_exchange } from './adjacent_exchange';
export { zeroes, dot, length, normalize, mean, transpose } from './aliases';
export {
all_pairs_distance,
Expand Down

0 comments on commit 0c3cb94

Please sign in to comment.