CPKit
v1.6.1

Graph Properties

PropertiesEasy

Analyze graph statistics including degrees, density, connected components, cycles, DAG, and tree indicators.

Alt+Shift+G

Configuration Panel

Modify vertices and edges on the canvas above then click analyze to audit the topological properties.

Complexity Mappings

Time ComplexityO(V + E)
Space ComplexityO(V + E) list sizes

Interactive SVG Graph Canvas

11111101234
🖱️ Middle-drag to Pan🎡 Scroll wheel to Zoom⌨️ Shift-drag snap to 20px grid

Inspector Panel

Select a vertex or edge to inspect details.

Graph Wizard

Conceptual Overview

Graph properties summarize structural indices (such as connectivity, cyclic properties, density, degrees, and matrix representations) that classify the topology.

Algorithm Mechanism

Runs static sweeps. Computes DFS reachability for connected components, DFS recStacks for cycle flags, and loops edge list maps to populate degrees.

Source: CP-Algorithms reference guide