| 61 | } |
| 62 | |
| 63 | export class Edge { |
| 64 | a: number = 0 |
| 65 | b: number = 0 |
| 66 | weight: number = 0 |
| 67 | constructor(a: number, b: number, weight: number) { |
| 68 | this.a = a |
| 69 | this.b = b |
| 70 | this.weight = weight |
| 71 | } |
| 72 | } |
nothing calls this directly
no outgoing calls
no test coverage detected