We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dd7732 commit 0b7b16aCopy full SHA for 0b7b16a
unit_tests/mocks/mock_datafacade.hpp
@@ -41,6 +41,14 @@ class MockDataFacade final : public engine::datafacade::BaseDataFacade
41
{
42
return SPECIAL_EDGEID;
43
}
44
+
45
+ EdgeID FindSmallestEdge(const NodeID /* from */,
46
+ const NodeID /* to */,
47
+ std::function<bool(EdgeData)> /* filter */) const override
48
+ {
49
+ return SPECIAL_EDGEID;
50
+ }
51
52
EdgeID FindEdgeIndicateIfReverse(const NodeID /* from */,
53
const NodeID /* to */,
54
bool & /* result */) const override
0 commit comments