-
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Expand file tree
/
Copy pathindex.js
More file actions
21 lines (19 loc) · 594 Bytes
/
index.js
File metadata and controls
21 lines (19 loc) · 594 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'use strict';
const Integer = require('./integer');
const Array1D = require('./array1d');
const Array2D = require('./array2d');
const CoordinateSystem = require('./coordinate_system');
const DirectedGraph = require('./directed_graph');
const UndirectedGraph = require('./undirected_graph');
const WeightedDirectedGraph = require('./weighted_directed_graph');
const WeightedUndirectedGraph = require('./weighted_undirected_graph');
module.exports = {
Integer,
Array1D,
Array2D,
CoordinateSystem,
DirectedGraph,
UndirectedGraph,
WeightedDirectedGraph,
WeightedUndirectedGraph
};