Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
maze.h
Go to the documentation of this file.
1
6/*************************************************************************
7 * Copyright (c) 2011 AT&T Intellectual Property
8 * All rights reserved. This program and the accompanying materials
9 * are made available under the terms of the Eclipse Public License v1.0
10 * which accompanies this distribution, and is available at
11 * https://www.eclipse.org/legal/epl-v10.html
12 *
13 * Contributors: Details at https://graphviz.org
14 *************************************************************************/
15
16#pragma once
17
18#include <ortho/sgraph.h>
19#include <stddef.h>
20
22
23#define MZ_ISNODE 1
24#define MZ_VSCAN 2
25#define MZ_HSCAN 4
26#define MZ_SMALLV 8
27#define MZ_SMALLH 16
28
30#define IsNode(cp) (cp->flags & MZ_ISNODE)
32#define IsVScan(cp) (cp->flags & MZ_VSCAN)
34#define IsHScan(cp) (cp->flags & MZ_HSCAN)
36#define IsSmallV(cp) (cp->flags & MZ_SMALLV)
38#define IsSmallH(cp) (cp->flags & MZ_SMALLH)
39
41
42typedef struct cell {
43 int flags;
44 int nedges;
54 int nsides;
57} cell;
58
75
76extern maze* mkMaze(graph_t*);
77extern void freeMaze (maze*);
78void updateWts (sgraph* g, cell* cp, sedge* ep);
79#ifdef DEBUG
80extern int odb_flags;
81#define ODB_MAZE 1
82#define ODB_SGRAPH 2
83#define ODB_ROUTE 4
84#define ODB_CHANG 8
85#define ODB_IGRAPH 16
86#endif
void freeMaze(maze *)
Definition maze.c:510
maze * mkMaze(graph_t *)
creates maze and fills maze::gcells and maze::cells. A subroutine of orthoEdges.
Definition maze.c:458
@ M_TOP
Definition maze.h:21
@ M_RIGHT
Definition maze.h:21
@ M_BOTTOM
Definition maze.h:21
@ M_LEFT
Definition maze.h:21
void updateWts(sgraph *g, cell *cp, sedge *ep)
updates sedge::weight of cell edges
Definition maze.c:171
int odb_flags
Definition ortho.c:56
graph or subgraph
Definition cgraph.h:424
Definition geom.h:41
result of partitioning available space, part of maze
Definition grid.h:33
int nsides
Definition maze.h:54
int flags
Definition maze.h:43
int nedges
Definition maze.h:44
boxf bb
Definition maze.h:56
sedge * edges[6]
up to six links (sedge) between four sides (snode) of the cell
Definition maze.h:45
snode ** sides
up to four sides: M_RIGHT, M_TOP, M_LEFT, M_BOTTOM
Definition maze.h:55
Definition cdt.h:100
available channels for orthogonal edges around nodes of graph_t
Definition maze.h:66
cell * cells
cells not corresponding to graph nodes
Definition maze.h:69
cell * gcells
cells corresponding to graph nodes
Definition maze.h:70
int ncells
Definition maze.h:67
Dt_t * vchans
set of vertical channels, created by extractVChans
Definition maze.h:73
size_t ngcells
Definition maze.h:68
Dt_t * hchans
set of horizontal channels, created by extractHChans.
Definition maze.h:72
sgraph * sg
search graph
Definition maze.h:71
Definition sgraph.h:42
a node of search graph sgraph, is created as a border segment between two adjusted cells of type cell...
Definition sgraph.h:26