public LightIntEdge(int src, int dst, BitArray bits) {
   this.src = src;
   this.dst = dst;
   this.metric = bits.cardinality();
 }