| 37 | } |
| 38 | |
| 39 | export class Edge { |
| 40 | a: number = 0 |
| 41 | b: number = 0 |
| 42 | weight: number = 0 |
| 43 | constructor(a: number, b: number, weight: number) { |
| 44 | this.a = a |
| 45 | this.b = b |
| 46 | this.weight = weight |
| 47 | } |
| 48 | } |
nothing calls this directly
no outgoing calls
no test coverage detected