Refactor: Change reachability interfaces to handle multiple removals/insertions

This commit is contained in:
stefiosif
2022-10-15 10:40:08 +03:00
parent 04ab33888e
commit e7fd88f82c
8 changed files with 41 additions and 37 deletions

View File

@@ -60,7 +60,7 @@ TEST_SUITE("Dynamic Reachability Test") {
}
SUBCASE("King::insert") {
king.insert(3, 10);
king.insert(3, { 10 });
CHECK_EQ(king.query(1, 10), true);
CHECK_EQ(king.query(2, 10), false);