Spaces:
Sleeping
Sleeping
File size: 12,188 Bytes
2e818da | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | from __future__ import annotations
import heapq
import math
import re
from collections import deque
from app.schemas.visual_lesson import (
CompiledGraphAlgorithm,
GraphAlgorithmSpec,
GraphEdgeSpec,
GraphNodeSpec,
GraphSearchBranch,
GraphSearchStep,
)
ALGORITHMS = ("bfs", "dfs", "dijkstra", "astar")
class GraphAlgorithmCompilationError(ValueError):
pass
class GraphAlgorithmCompiler:
@staticmethod
def _default_graph() -> tuple[list[GraphNodeSpec], list[GraphEdgeSpec]]:
positions = {
"A": (90, 290), "B": (270, 120), "C": (270, 450), "D": (500, 80),
"E": (520, 300), "F": (500, 520), "G": (750, 180), "H": (900, 350),
}
edge_rows = [
("A", "B", 4), ("A", "C", 2), ("B", "C", 1), ("B", "D", 5),
("B", "E", 10), ("C", "E", 8), ("C", "F", 4), ("D", "G", 3),
("E", "G", 1), ("E", "H", 5), ("F", "E", 2), ("F", "H", 7), ("G", "H", 2),
]
nodes = [GraphNodeSpec(node_id=node_id, label=node_id, x=x, y=y) for node_id, (x, y) in positions.items()]
edges = [GraphEdgeSpec(edge_id=f"e{index}", source=source, target=target, weight=weight) for index, (source, target, weight) in enumerate(edge_rows)]
return nodes, edges
@staticmethod
def _custom_graph(prompt: str) -> tuple[list[GraphNodeSpec], list[GraphEdgeSpec], bool] | None:
matches = re.findall(r"\b([A-Za-z][A-Za-z0-9_]{0,7})\s*(->|-)\s*([A-Za-z][A-Za-z0-9_]{0,7})\s*(?::|=)\s*(\d+(?:\.\d+)?)", prompt)
if len(matches) < 2:
return None
node_ids = sorted({source for source, _, _, _ in matches} | {target for _, _, target, _ in matches})
if len(node_ids) > 10:
raise GraphAlgorithmCompilationError("Graph visualizations support at most 10 nodes")
directed = "directed" in prompt.lower() or any(arrow == "->" for _, arrow, _, _ in matches)
nodes = []
for index, node_id in enumerate(node_ids):
angle = 2 * math.pi * index / len(node_ids) - math.pi / 2
nodes.append(GraphNodeSpec(node_id=node_id, label=node_id, x=500 + 380 * math.cos(angle), y=300 + 235 * math.sin(angle)))
edges = []
seen: set[tuple[str, str]] = set()
for source, _, target, weight_text in matches:
key = (source, target) if directed else tuple(sorted((source, target)))
if key in seen:
continue
seen.add(key)
weight = float(weight_text)
if not 0 < weight <= 1e6:
raise GraphAlgorithmCompilationError("Graph weights must be positive and at most 1,000,000")
edges.append(GraphEdgeSpec(edge_id=f"e{len(edges)}", source=source, target=target, weight=weight))
return nodes, edges, directed
def parse_prompt(self, prompt: str) -> tuple[GraphAlgorithmSpec, list[str]]:
text = prompt.lower()
custom = self._custom_graph(prompt)
if custom:
nodes, edges, directed = custom
illustrative = False
warnings: list[str] = []
else:
nodes, edges = self._default_graph()
directed = "directed" in text
illustrative = True
warnings = []
if "breadth" in text or re.search(r"\bbfs\b", text):
algorithm = "bfs"
elif "depth" in text or re.search(r"\bdfs\b", text):
algorithm = "dfs"
elif "a*" in text or "a-star" in text or "astar" in text:
algorithm = "astar"
else:
algorithm = "dijkstra"
node_ids = {node.node_id for node in nodes}
start, target = nodes[0].node_id, nodes[-1].node_id
endpoint = re.search(r"\bfrom\s+([A-Za-z][A-Za-z0-9_]{0,7})\s+to\s+([A-Za-z][A-Za-z0-9_]{0,7})\b", prompt, flags=re.IGNORECASE)
if endpoint:
proposed_start, proposed_target = endpoint.group(1), endpoint.group(2)
lookup = {node_id.lower(): node_id for node_id in node_ids}
if proposed_start.lower() not in lookup or proposed_target.lower() not in lookup:
raise GraphAlgorithmCompilationError("The requested start or target node is not present in the graph")
start, target = lookup[proposed_start.lower()], lookup[proposed_target.lower()]
if start == target:
target = nodes[-1].node_id if start != nodes[-1].node_id else nodes[0].node_id
return GraphAlgorithmSpec(
project_id="",
prompt=prompt,
directed=directed,
nodes=nodes,
edges=edges,
primary_algorithm=algorithm,
initial_start_node=start,
initial_target_node=target,
graph_is_illustrative=illustrative,
assumptions=[
"Edge weights are non-negative and remain fixed during a search.",
"Ties are resolved deterministically by node label.",
"A* uses a graph-derived admissible Euclidean heuristic; the other algorithms do not use node positions.",
],
created_at=0.0,
), warnings
@staticmethod
def _adjacency(spec: GraphAlgorithmSpec) -> dict[str, list[tuple[str, float, str]]]:
adjacency = {node.node_id: [] for node in spec.nodes}
for edge in spec.edges:
adjacency[edge.source].append((edge.target, edge.weight, edge.edge_id))
if not spec.directed:
adjacency[edge.target].append((edge.source, edge.weight, edge.edge_id))
for rows in adjacency.values():
rows.sort(key=lambda row: row[0])
return adjacency
@staticmethod
def _path(target: str, parents: dict[str, tuple[str, str]], start: str) -> tuple[list[str], list[str]]:
if target != start and target not in parents:
return [], []
nodes = [target]
edges: list[str] = []
while nodes[-1] != start:
parent, edge_id = parents[nodes[-1]]
nodes.append(parent)
edges.append(edge_id)
return list(reversed(nodes)), list(reversed(edges))
@staticmethod
def _heuristic_scale(spec: GraphAlgorithmSpec) -> float:
positions = {node.node_id: (node.x, node.y) for node in spec.nodes}
ratios = []
for edge in spec.edges:
ax, ay = positions[edge.source]
bx, by = positions[edge.target]
distance = math.hypot(ax - bx, ay - by)
if distance > 0:
ratios.append(edge.weight / distance)
return min(ratios) if ratios else 0.0
def _compile_branch(self, spec: GraphAlgorithmSpec, algorithm: str, start: str, target: str) -> GraphSearchBranch:
adjacency = self._adjacency(spec)
parents: dict[str, tuple[str, str]] = {}
distances: dict[str, float] = {start: 0.0}
visited: list[str] = []
steps = [GraphSearchStep(step_index=0, frontier=[start], distances={start: 0.0}, description=f"Start at {start}.")]
edge_weights = {edge.edge_id: edge.weight for edge in spec.edges}
found = False
if algorithm in {"bfs", "dfs"}:
frontier = deque([start]) if algorithm == "bfs" else [start]
discovered = {start}
while frontier:
current = frontier.popleft() if algorithm == "bfs" else frontier.pop()
if current in visited:
continue
visited.append(current)
active_edges: list[str] = []
if current == target:
found = True
else:
neighbours = adjacency[current] if algorithm == "bfs" else list(reversed(adjacency[current]))
for neighbour, weight, edge_id in neighbours:
if neighbour in discovered:
continue
discovered.add(neighbour)
parents[neighbour] = (current, edge_id)
distances[neighbour] = distances[current] + weight
active_edges.append(edge_id)
frontier.append(neighbour)
snapshot = list(frontier)
parent_edges = [edge_id for _, edge_id in parents.values()]
steps.append(GraphSearchStep(step_index=len(steps), current_node=current, frontier=snapshot, visited=list(visited), distances=dict(distances), parent_edge_ids=parent_edges, active_edge_ids=active_edges, description=f"Visit {current}; add undiscovered neighbours to the {'queue' if algorithm == 'bfs' else 'stack'}."))
if found:
break
else:
positions = {node.node_id: (node.x, node.y) for node in spec.nodes}
scale = self._heuristic_scale(spec) if algorithm == "astar" else 0.0
def heuristic(node_id: str) -> float:
ax, ay = positions[node_id]
bx, by = positions[target]
return math.hypot(ax - bx, ay - by) * scale
heap: list[tuple[float, str]] = [(heuristic(start), start)]
settled: set[str] = set()
while heap:
_, current = heapq.heappop(heap)
if current in settled:
continue
settled.add(current)
visited.append(current)
active_edges = []
if current == target:
found = True
else:
for neighbour, weight, edge_id in adjacency[current]:
candidate = distances[current] + weight
if candidate + 1e-12 < distances.get(neighbour, math.inf):
distances[neighbour] = candidate
parents[neighbour] = (current, edge_id)
heapq.heappush(heap, (candidate + heuristic(neighbour), neighbour))
active_edges.append(edge_id)
frontier_nodes = sorted({node_id for _, node_id in heap if node_id not in settled}, key=lambda node_id: (distances.get(node_id, math.inf) + heuristic(node_id), node_id))
steps.append(GraphSearchStep(step_index=len(steps), current_node=current, frontier=frontier_nodes, visited=list(visited), distances=dict(distances), parent_edge_ids=[edge_id for _, edge_id in parents.values()], active_edge_ids=active_edges, description=f"Settle {current}; relax outgoing edges with lower tentative cost."))
if found:
break
path, path_edges = self._path(target, parents, start)
if start == target:
found, path = True, [start]
cost = sum(edge_weights[edge_id] for edge_id in path_edges)
steps.append(GraphSearchStep(step_index=len(steps), current_node=target if found else "", frontier=[], visited=list(visited), distances=dict(distances), parent_edge_ids=[edge_id for _, edge_id in parents.values()], active_edge_ids=path_edges, final_path=path, description=f"Path found with cost {cost:g}." if found else "No path connects the selected nodes."))
return GraphSearchBranch(algorithm=algorithm, start_node=start, target_node=target, found=found, path=path, path_cost=cost, steps=steps)
def compile_spec(self, spec: GraphAlgorithmSpec) -> CompiledGraphAlgorithm:
node_ids = [node.node_id for node in spec.nodes]
branches = [self._compile_branch(spec, algorithm, start, target) for algorithm in ALGORITHMS for start in node_ids for target in node_ids]
index = {(branch.algorithm, branch.start_node, branch.target_node): branch for branch in branches}
for start in node_ids:
for target in node_ids:
dijkstra = index[("dijkstra", start, target)]
astar = index[("astar", start, target)]
if dijkstra.found != astar.found or abs(dijkstra.path_cost - astar.path_cost) > 1e-8:
raise GraphAlgorithmCompilationError("A* and Dijkstra disagree on the optimal path cost")
return CompiledGraphAlgorithm(branches=branches, assertions_passed=True)
|