Skip to content

Commit 8db67b9

Browse files
committed
fix conversions between long and long long
as_long in external_sat.cpp was declared as long long, computed as long, and subsequently passed to labs, which expects a long. This yields an error on any platform where long is not long long. This changes the calculation to use long long consistently.
1 parent 52688d7 commit 8db67b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/solvers/sat/external_sat.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ external_satt::resultt external_satt::parse_result(std::string solver_output)
119119
{
120120
try
121121
{
122-
signed long long as_long = std::stol(assignment_string);
123-
size_t index = std::labs(as_long);
122+
signed long long as_long = std::stoll(assignment_string);
123+
size_t index = std::llabs(as_long);
124124

125125
if(index >= number_of_variables)
126126
{

0 commit comments

Comments
 (0)