[pkg] v1.41.9 published

This commit is contained in:
Revone 2023-11-04 21:31:15 +08:00
parent 62e55b84bd
commit a85ea70cee

View file

@ -10,7 +10,6 @@ import {PriorityQueue} from '../priority-queue';
import type {DijkstraResult, VertexKey} from '../../types';
import {IGraph} from '../../interfaces';
import {Queue} from '../queue';
import * as console from "console";
export abstract class AbstractVertex<V = any> {
key: VertexKey;
@ -255,7 +254,6 @@ export abstract class AbstractGraph<
}
}
}
console.log('999999', JSON.stringify(paths));
return paths;
}