cprover
write_goto_binary.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Write GOTO binaries
4 
5 Author: CM Wintersteiger
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_GOTO_PROGRAMS_WRITE_GOTO_BINARY_H
13 #define CPROVER_GOTO_PROGRAMS_WRITE_GOTO_BINARY_H
14 
15 #define GOTO_BINARY_VERSION 4
16 
17 #include <iosfwd>
18 #include <string>
19 
20 #include "goto_functions.h"
21 
22 class goto_modelt;
23 class message_handlert;
24 
26  std::ostream &out,
27  const goto_modelt &,
28  int version=GOTO_BINARY_VERSION);
29 
31  std::ostream &out,
32  const symbol_tablet &,
33  const goto_functionst &,
34  int version=GOTO_BINARY_VERSION);
35 
37  const std::string &filename,
38  const goto_modelt &,
40 
41 #endif // CPROVER_GOTO_PROGRAMS_WRITE_GOTO_BINARY_H
Goto Programs with Functions.
bool write_goto_binary(std::ostream &out, const goto_modelt &, int version=4)
Writes a goto program to disc.
#define GOTO_BINARY_VERSION
The symbol table.
Definition: symbol_table.h:19
A collection of goto functions.