Skip to content

Commit c8dd91f

Browse files
committed
Use 64-bit integer for non-zero count
1 parent 1b3a77d commit c8dd91f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gmscuopt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ int main(int argc, char *argv[])
133133

134134
cuopt_int_t num_variables = gmoN(gmo);
135135
cuopt_int_t num_constraints = gmoM(gmo);
136-
cuopt_int_t nnz = gmoNZ(gmo);
136+
int64_t nnz = gmoNZ64(gmo);
137137

138138
cuopt_int_t* constraint_matrix_row_offsets=NULL;
139139
cuopt_int_t* constraint_matrix_column_indices=NULL;

0 commit comments

Comments
 (0)