From 64a22f4849b38ca6779b03bce8b10b8f09c1aa04 Mon Sep 17 00:00:00 2001 From: Petar Petrov Date: Fri, 22 Nov 2024 16:05:01 +0100 Subject: [PATCH] 333 --- docs/Karp.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Karp.rst b/docs/Karp.rst index e315b51..1df681e 100644 --- a/docs/Karp.rst +++ b/docs/Karp.rst @@ -5,12 +5,12 @@ Overview -------- The **karp** module provides tools to solve and validate various NP-complete problems defined by Karp. The module is subdivided into three classes: **KarpGraphs**, **KarpSets**, and **KarpNumber**. -This document focuses on the **KarpGraphs** class, which contains methods for solving graph-based problems, such as **graph coloring**, **vertex cover**, and **clique**. Among these, the `graph_coloring` method is detailed below. +This document focuses on the KarpGraph class, which contains methods for solving graph-based problems, such as **graph coloring**, **vertex cover**, and **clique**. Among these, the ``graph_coloring`` method is detailed below. Class: ``KarpGraphs`` --------------------- -### Method: ``graph_coloring`` +Method: ``graph_coloring`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This method sets up and optionally solves the graph coloring problem for a given input graph and number of colors.