| 9 | import { BinaryLifting } from './BinaryLifting' |
| 10 | |
| 11 | class LCABinaryLifting extends BinaryLifting { |
| 12 | constructor(root, tree) { |
| 13 | super(root, tree) |
| 14 | this.depth = new Map() // depth[node] stores the depth of node from root |
nothing calls this directly
no outgoing calls
no test coverage detected