vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
279 B

  1. /**
  2. * Created by Alex on 2/20/2015.
  3. */
  4. var public = require("./clustering/public");
  5. var support = require("./clustering/support");
  6. var backend = require("./clustering/backend");
  7. function ClusterEngine(network) {
  8. this.network = network;
  9. }
  10. module.exports = clusterEngine