Skip to content

Commit 62cd1a2

Browse files
committed
bugfix
1 parent 24df7dc commit 62cd1a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/osp/dag_divider/isomorphism_divider/MerkleHashComputer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ limitations under the License.
3232
namespace osp {
3333

3434
template<typename Graph_t, typename node_hash_func_t = uniform_node_hash_func<vertex_idx_t<Graph_t>>, bool forward = true>
35-
class MerkleHashComputer : public HashComputer<vertex_idx_t<Graph_t>> {
35+
class MerkleHashComputer : public HashComputer<std::size_t> {
3636

3737
static_assert(is_directed_graph_v<Graph_t>, "Graph_t must satisfy the directed_graph concept");
3838
static_assert(std::is_invocable_r<std::size_t, node_hash_func_t, vertex_idx_t<Graph_t>>::value, "node_hash_func_t must be invocable with one vertex_idx_t<Graph_t> argument and return std::size_t.");

0 commit comments

Comments
 (0)