Skip to content

Commit

Permalink
small correction in name and headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Hromz committed Oct 9, 2023
1 parent 7f19ab7 commit 0f9ffe8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ namespace graaf::algorithm {
* algorithm.
*
* The Bron-Kerbosch algorithm is used for finding all cliques in an undirected
* graph. A clique is a subset of vertices such that every two distinct vertices
* are adjacent. This function returns a list of all cliques, each represented
* as a vector of vertex identifiers.
* graph. A clique_detection is a subset of vertices such that every two
* distinct vertices are adjacent. This function returns a list of all cliques,
* each represented as a vector of vertex identifiers.
*
* @tparam V The vertex type of the graph.
* @tparam E The edge type of the graph.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <graaflib/algorithm/clique/bron_kerbosch.h>
#include <graaflib/algorithm/clique_detection/bron_kerbosch.h>

#include <algorithm>
#include <iostream>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <fmt/core.h>
#include <graaflib/algorithm/clique/bron_kerbosch.h>
#include <graaflib/algorithm/clique_detection/bron_kerbosch.h>
#include <graaflib/graph.h>
#include <graaflib/types.h>
#include <gtest/gtest.h>
Expand Down

0 comments on commit 0f9ffe8

Please sign in to comment.