Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/solvers/flattening/bv_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,17 +179,17 @@ class bv_utilst
static bvt
extension(const bvt &bv, std::size_t new_size, representationt rep);

bvt sign_extension(const bvt &bv, std::size_t new_size)
static bvt sign_extension(const bvt &bv, std::size_t new_size)
{
return extension(bv, new_size, representationt::SIGNED);
}

bvt zero_extension(const bvt &bv, std::size_t new_size)
static bvt zero_extension(const bvt &bv, std::size_t new_size)
{
return extension(bv, new_size, representationt::UNSIGNED);
}

bvt zeros(std::size_t new_size) const
static bvt zeros(std::size_t new_size)
{
bvt result;
result.resize(new_size, const_literal(false));
Expand Down