Skip to content

Commit a020f77

Browse files
committed
fix
1 parent 5d3b176 commit a020f77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/mip/feasibility_jump/feasibility_jump.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ void fj_t<i_t, f_t>::climber_init(i_t climber_idx, const rmm::cuda_stream_view&
554554
cuopt_assert(thrust::all_of(rmm::exec_policy(climber_stream),
555555
thrust::counting_iterator<i_t>(0),
556556
thrust::counting_iterator<i_t>(cstr_coeff_reciprocal.size()),
557-
[v = view] __device__(i_t offset) {
557+
[v = view] __device__(i_t offset) -> bool {
558558
return v.cstr_coeff_reciprocal[offset] != 0 &&
559559
isfinite(v.cstr_coeff_reciprocal[offset]);
560560
}),

0 commit comments

Comments
 (0)