forked from diffblue/cbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move string_constraintt constructor to cpp
Allows to add functionality to constructor without overcharging the header file.
- Loading branch information
Joel Allred
committed
Jul 18, 2018
1 parent
f01c03c
commit 16052f8
Showing
3 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/*******************************************************************\ | ||
Module: String solver | ||
Author: Diffblue Ltd. | ||
\*******************************************************************/ | ||
|
||
#include "string_constraint.h" | ||
|
||
string_constraintt::string_constraintt( | ||
symbol_exprt _univ_var, | ||
exprt lower_bound, | ||
exprt upper_bound, | ||
exprt body) | ||
: univ_var(_univ_var), | ||
lower_bound(lower_bound), | ||
upper_bound(upper_bound), | ||
body(body) | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters