Skip to content

Commit

Permalink
Migrate graph_complete.js
Browse files Browse the repository at this point in the history
  • Loading branch information
curran committed Dec 29, 2020
1 parent dbc3096 commit 9a94aaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph_complete.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
reorder.complete_graph = function(n, directed) {
export function complete_graph(n, directed) {
var nodes = graph_empty_nodes(n),
links = [],
i, j;
Expand Down
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ export {
valuemats_reorder
} from './graph2distmat';
export { graph2mat } from './graph2mat';
export { complete_graph } from './graph_complete';

0 comments on commit 9a94aaf

Please sign in to comment.