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.

8 lines
181 B

4 years ago
4 years ago
4 years ago
  1. package model
  2. import scala.math.{sqrt, pow}
  3. import util.Util
  4. case class HHCEdge(v1: Customer, v2: Customer) {
  5. val weight = Util.getHaversineDistance(v1.location, v2.location)
  6. }