CBMC
Loading...
Searching...
No Matches
dot.h
Go to the documentation of this file.
1/*******************************************************************\
2
3Module: Dump Goto-Program as DOT Graph
4
5Author: 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
17class goto_modelt;
18
19void 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