From f6bc2be17e101ed35978301d510ac3ec31842130 Mon Sep 17 00:00:00 2001 From: Costa Shulyupin Date: Tue, 26 Apr 2022 08:20:29 +0300 Subject: [PATCH] add comments to struct maze The ordered sets are created by `dtopen` with descriptor `chanItemDisc` and method `Dtoset`. The method is defined with #define DT_OSET 0000004 /* ordered set (self-adjusting tree) */ Channels are added with function `addChan` and are retrieved by `chanSearch` --- lib/ortho/maze.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ortho/maze.h b/lib/ortho/maze.h index 005b86181..a429326ec 100644 --- a/lib/ortho/maze.h +++ b/lib/ortho/maze.h @@ -66,9 +66,9 @@ typedef struct { int ncells, ngcells; cell* cells; ///< @brief cells not corresponding to graph nodes cell* gcells; ///< @brief cells corresponding to graph nodes - sgraph* sg; - Dt_t* hchans; - Dt_t* vchans; + sgraph* sg; ///< @brief search graph + Dt_t* hchans; ///< @brief set of horizontal @ref channel "channels", created by @ref extractHChans. + Dt_t* vchans; ///< @brief set of vertical @ref channel "channels", created by @ref extractVChans } maze; extern maze* mkMaze(graph_t*); -- 2.40.0