CliqueT

Type Alias CliqueT 

Source
pub type CliqueT<G = SimpleGraph, W = i32> = GraphProblem<CliqueConstraint, G, W>;
Expand description

Clique problem using the generic template.

Note: For finding cliques, create the complement graph first.

§Type Parameters

  • G: Graph type (default: SimpleGraph)
  • W: Weight type (default: i32)

Aliased Type§

pub struct CliqueT<G = SimpleGraph, W = i32> { /* private fields */ }