CBMC
dot.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Dump Goto-Program as DOT Graph
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_GOTO_INSTRUMENT_DOT_H
13 #define CPROVER_GOTO_INSTRUMENT_DOT_H
14 
15 #include <iosfwd>
16 
17 class goto_modelt;
18 
19 void dot(
20  const goto_modelt &,
21  std::ostream &out);
22 
23 #endif // CPROVER_GOTO_INSTRUMENT_DOT_H
void dot(const goto_modelt &, std::ostream &out)
Definition: dot.cpp:359