@@ -254,7 +254,6 @@ clique.number <- function(graph) {
254254# '
255255# ' # Check that all returned vertex sets are indeed cliques
256256# ' all(sapply(max_cliques(g), function (c) is_clique(g, c)))
257- # ' @cdocs igraph_cliques igraph_cliques_callback
258257cliques <- function (graph , min = NULL , max = NULL , ... , callback = NULL ) {
259258 ensure_igraph(graph )
260259 check_dots_empty()
@@ -280,7 +279,6 @@ cliques <- function(graph, min = NULL, max = NULL, ..., callback = NULL) {
280279
281280# ' @rdname cliques
282281# ' @export
283- # ' @cdocs igraph_largest_cliques
284282largest_cliques <- function (graph ) {
285283 largest_cliques_impl(
286284 graph = graph
@@ -410,7 +408,6 @@ count_max_cliques <- function(graph, min = NULL, max = NULL, subset = NULL) {
410408
411409# ' @rdname cliques
412410# ' @export
413- # ' @cdocs igraph_clique_number
414411clique_num <- function (graph ) {
415412 clique_number_impl(
416413 graph = graph
@@ -467,7 +464,6 @@ clique_num <- function(graph) {
467464# ' weighted_cliques(g, maximal = TRUE)
468465# ' largest_weighted_cliques(g)
469466# ' weighted_clique_num(g)
470- # ' @cdocs igraph_weighted_cliques
471467weighted_cliques <- function (
472468 graph ,
473469 vertex.weights = NULL ,
@@ -485,7 +481,6 @@ weighted_cliques <- function(
485481}
486482# ' @export
487483# ' @rdname cliques
488- # ' @cdocs igraph_largest_weighted_cliques
489484largest_weighted_cliques <- function (graph , vertex.weights = NULL ) {
490485 largest_weighted_cliques_impl(
491486 graph = graph ,
@@ -494,7 +489,6 @@ largest_weighted_cliques <- function(graph, vertex.weights = NULL) {
494489}
495490# ' @export
496491# ' @rdname cliques
497- # ' @cdocs igraph_weighted_clique_number
498492weighted_clique_num <- function (graph , vertex.weights = NULL ) {
499493 weighted_clique_number_impl(
500494 graph = graph ,
@@ -639,8 +633,6 @@ independence_number <- ivs_size
639633
640634# ' @rdname cliques
641635# ' @export
642- # ' @cdocs igraph_maximal_cliques_hist
643- # ' @cdocs igraph_clique_size_hist
644636clique_size_counts <- function (graph , min = 0 , max = 0 , maximal = FALSE ) {
645637 if (maximal ) {
646638 maximal_cliques_hist_impl(
@@ -669,7 +661,6 @@ clique_size_counts <- function(graph, min = 0, max = 0, maximal = FALSE) {
669661# ' @keywords graphs
670662# ' @seealso [make_full_graph()]
671663# ' @export
672- # ' @cdocs igraph_is_complete
673664# ' @examples
674665# '
675666# ' g <- make_full_graph(6, directed = TRUE)
@@ -697,7 +688,6 @@ is_complete <- function(graph) {
697688# ' a clique.
698689# ' @keywords graphs
699690# ' @export
700- # ' @cdocs igraph_is_clique
701691is_clique <- function (graph , candidate , directed = FALSE ) {
702692 is_clique_impl(
703693 graph = graph ,
@@ -714,7 +704,6 @@ is_clique <- function(graph, candidate, directed = FALSE) {
714704# ' independent set.
715705# ' @keywords graphs
716706# ' @export
717- # ' @cdocs igraph_is_independent_vertex_set
718707is_ivs <- function (graph , candidate ) {
719708 is_independent_vertex_set_impl(
720709 graph = graph ,
0 commit comments