CBMC
Loading...
Searching...
No Matches
equality_propagation.h
Go to the documentation of this file.
1/*******************************************************************\
2
3Module: Equality Propagation
4
5Author: Daniel Kroening, dkr@amazon.com
6
7\*******************************************************************/
8
11
12#ifndef CPROVER_CPROVER_EQUALITY_PROPAGATION_H
13#define CPROVER_CPROVER_EQUALITY_PROPAGATION_H
14
15#include <vector>
16
17class exprt;
18
19void equality_propagation(std::vector<exprt> &);
20
21#endif // CPROVER_CPROVER_EQUALITY_PROPAGATION_H
Base class for all expressions.
Definition expr.h:56
void equality_propagation(std::vector< exprt > &)