Skip to content

Commit

Permalink
Update subgraph_algos.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
patflick committed Feb 21, 2016
1 parent 8a4ff2a commit dff189a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ppi_networkit/src/subgraph_algos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ std::vector<NetworKit::count> subgraph_neighbor_max_exists_count(const Subgraphs
// only check neighbors which are coexpressed in at least one tissue
if (edge_label.any())
{
result[u] = std::max(result[u], subgraphs.node_exists[v].count());
result[u] = std::max<count_t>(result[u], subgraphs.node_exists[v].count());
}
});
});
Expand Down

0 comments on commit dff189a

Please sign in to comment.