Show
Ignore:
Timestamp:
06/24/09 13:38:47 (15 years ago)
Author:
mido
Message:

UI documentation almost finished; UIException redesigned and used instead of UI::ui_error function

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/doc/html/inline_dotgraph_1.dot

    r271 r396  
    11  
    2 digraph estimation{ 
    3         node [shape=box]; 
    4         {rank="same"; "Data Source"; "Bayesian Model"} 
    5         "Data Source" -> "Bayesian Model" [label="data"]; 
    6         "Bayesian Model" -> "Result Logger" [label="estimated\n statistics"];  
    7         "Data Source" -> "Result Logger" [label="Simulated\n data"]; 
     2digraph datalink { 
     3rankdir=LR; 
     4subgraph cluster0 { 
     5node [shape=record]; 
     6label = "RV_MAP \n std::map<string,int>"; 
     7map [label="{{\"a\"| \"b\" | \"c\"} | {<3> 3 |<1> 1|<2> 2}}"]; 
     8color = "white" 
    89} 
     10subgraph cluster1{ 
     11node [shape=record]; 
     12label = "RV_NAMES"; 
     13names [label="{<1> \"b\" | <2> \"c\" | <3>\"a\" }"]; 
     14color = "white" 
     15} 
     16subgraph cluster2{ 
     17node [shape=record]; 
     18label = "RV_SIZES"; 
     19labelloc = b; 
     20sizes [label="{<1>1 |<2> 4 |<3> 1}"]; 
     21color = "white" 
     22} 
     23map:1 -> names:1; 
     24map:1 -> sizes:1; 
     25map:3 -> names:3; 
     26map:3 -> sizes:3; 
     27}