Eades constructor

Eades({
  1. required Graph graph,
  2. double c1 = 15.0,
  3. double c2 = 150.0,
  4. double c3 = 5000.0,
  5. double c4 = 1.0,
  6. double c5 = 0.0,
})

Implementation

Eades({
  required super.graph,
  // TODO: Tune these constants.
  this.c1 = 15.0,
  this.c2 = 150.0,
  this.c3 = 5000.0,
  this.c4 = 1.0,
  this.c5 = 0.0,
});